pub enum Width {
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 Width
Auto Trait Implementations§
impl Freeze for Width
impl RefUnwindSafe for Width
impl Send for Width
impl Sync for Width
impl Unpin for Width
impl UnwindSafe for Width
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