pub struct Pack {
pub children: Option<Box<(Pack, Pack)>>,
pub top: u16,
pub left: u16,
pub bottom: u16,
pub right: u16,
pub elem: Option<Coords>,
}Fields§
§children: Option<Box<(Pack, Pack)>>§top: u16§left: u16§bottom: u16§right: u16§elem: Option<Coords>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pack
impl RefUnwindSafe for Pack
impl Send for Pack
impl Sync for Pack
impl Unpin for Pack
impl UnwindSafe for Pack
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