pub enum Height {
Fill,
Fix(f32),
Compute,
ComputeFill,
FillPad(f32),
FillScale(f32),
FillScalePad(f32, f32),
Scale(f32),
ScalePad(f32, f32),
}
Variants§
Fill
Fix(f32)
Compute
ComputeFill
FillPad(f32)
FillScale(f32)
FillScalePad(f32, f32)
Scale(f32)
ScalePad(f32, f32)
Implementations§
Trait Implementations§
impl Copy for Height
Auto Trait Implementations§
impl Freeze for Height
impl RefUnwindSafe for Height
impl Send for Height
impl Sync for Height
impl Unpin for Height
impl UnwindSafe for Height
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