pub enum PlacementDomain {
Unconstrained,
Supported(SupportedPlacement),
FrameOffsets(FrameOffsetPlacement),
SupportedFrameOffsets {
support: SupportedPlacement,
offsets: FrameOffsetPlacement,
},
}Expand description
Geometric predicate limiting where a backend may search for placements.
Variants§
Unconstrained
Supported(SupportedPlacement)
FrameOffsets(FrameOffsetPlacement)
SupportedFrameOffsets
Trait Implementations§
Source§impl Clone for PlacementDomain
impl Clone for PlacementDomain
Source§fn clone(&self) -> PlacementDomain
fn clone(&self) -> PlacementDomain
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlacementDomain
impl Debug for PlacementDomain
Source§impl PartialEq for PlacementDomain
impl PartialEq for PlacementDomain
impl StructuralPartialEq for PlacementDomain
Auto Trait Implementations§
impl Freeze for PlacementDomain
impl RefUnwindSafe for PlacementDomain
impl Send for PlacementDomain
impl Sync for PlacementDomain
impl Unpin for PlacementDomain
impl UnwindSafe for PlacementDomain
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more