pub enum HeightProviderData {
Constant(VerticalAnchorData),
Uniform {
min_inclusive: VerticalAnchorData,
max_inclusive: VerticalAnchorData,
},
}Expand description
Height provider subset used by vanilla structures in this version.
Variants§
Constant(VerticalAnchorData)
Uniform
Trait Implementations§
Source§impl Clone for HeightProviderData
impl Clone for HeightProviderData
Source§fn clone(&self) -> HeightProviderData
fn clone(&self) -> HeightProviderData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HeightProviderData
impl RefUnwindSafe for HeightProviderData
impl Send for HeightProviderData
impl Sync for HeightProviderData
impl Unpin for HeightProviderData
impl UnsafeUnpin for HeightProviderData
impl UnwindSafe for HeightProviderData
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