pub struct ModDetailPlaceStorage {
pub objects: Option<u32>,
pub silo_capacity: u32,
pub silo_exists: bool,
pub silo_fill_cats: Vec<String>,
pub silo_fill_types: Vec<String>,
}Expand description
placable storage sub-record
Fields§
§objects: Option<u32>number of objects for object storage types
silo_capacity: u32silo capacity
silo_exists: boolis a silo?
silo_fill_cats: Vec<String>silo fill categories
silo_fill_types: Vec<String>silo fill types
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModDetailPlaceStorage
impl RefUnwindSafe for ModDetailPlaceStorage
impl Send for ModDetailPlaceStorage
impl Sync for ModDetailPlaceStorage
impl Unpin for ModDetailPlaceStorage
impl UnwindSafe for ModDetailPlaceStorage
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