pub struct Item {
pub t: Type,
pub w: f32,
pub y: f32,
pub z: f32,
pub p: f32,
pub f: bool,
}Expand description
An item.
Fields§
§t: TypeThe type.
w: f32The width.
y: f32The stretchability.
z: f32The shrinkability.
p: f32The penalty.
f: boolThe flag.
Implementations§
Trait Implementations§
impl Copy for Item
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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