PlaceDetailsCompactView
@MainActor
struct PlaceDetailsCompactViewextension PlaceDetailsCompactView : Sendable, View- 
                  
                  DeclarationSwift @MainActor var $query: Binding<PlaceDetailsQuery> { get }
- 
                  
                  The type of view representing the body of this view. When you create a custom view, Swift infers this type from your implementation of the required View/body-swift.propertyproperty.DeclarationSwift typealias Body = some View
- 
                  
                  All PlaceDetailsCompactContenttypes for the place details compact view.DeclarationSwift @MainActor static let allContent: Set<PlaceDetailsCompactContent>
- 
                  
                  The body of the place details compact view. DeclarationSwift @MainActor @preconcurrency var body: some View { get }
- 
                  
                  The configuration of the place details compact view. DeclarationSwift @MainActor var configuration: PlaceDetailsCompactConfiguration
- 
                  
                  Initializer for the place details compact view. DeclarationSwift @MainActor init(orientation: PlaceDetailsViewOrientation = .vertical, query: Binding<PlaceDetailsQuery>, configuration: PlaceDetailsCompactConfiguration, placeDetailsCallback: @escaping (PlaceDetailsResult) -> Void)ParametersorientationThe orientation of the place details view. queryThe place details component query. 
- 
                  
                  The orientation of the place details view. DeclarationSwift @MainActor var orientation: PlaceDetailsViewOrientation
- 
                  
                  The place details component query. DeclarationSwift @Binding @MainActor var query: PlaceDetailsQuery { get nonmutating set }
- 
                  
                  The standard PlaceDetailsCompactContenttypes for the place details compact view.DeclarationSwift @MainActor static let standardContent: Set<PlaceDetailsCompactContent>