pub struct Brick<S = String> {
pub base: BrickBase<S>,
pub unknown_extra: Vec<S>,
}
Expand description
A single brick in a save file, including extended attributes.
Fields§
§base: BrickBase<S>
Basic brick data excluding extended attributes.
unknown_extra: Vec<S>
Extra brick data associated with this brick but not supported by the library.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for Brick<S>where
S: Freeze,
impl<S> RefUnwindSafe for Brick<S>where
S: RefUnwindSafe,
impl<S> Send for Brick<S>where
S: Send,
impl<S> Sync for Brick<S>where
S: Sync,
impl<S> Unpin for Brick<S>where
S: Unpin,
impl<S> UnwindSafe for Brick<S>where
S: UnwindSafe,
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