pub struct Bin {
pub contents: Vec<Item>,
}
Expand description
Bin type represents what something is packed into.
Bin.contents contains a Vec<Item>
, representing the items of that packed bin.
Fields§
§contents: Vec<Item>
Implementations§
Trait Implementations§
impl StructuralPartialEq for Bin
Auto Trait Implementations§
impl Freeze for Bin
impl RefUnwindSafe for Bin
impl Send for Bin
impl Sync for Bin
impl Unpin for Bin
impl UnwindSafe for Bin
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