pub struct Solid {
pub id: u64,
pub sides: Vec<Side>,
pub editor: Editor,
}
Expand description
Represents a solid object in the VMF world.
Fields§
§id: u64
The unique ID of the solid.
sides: Vec<Side>
The sides of the solid.
editor: Editor
The editor data for the solid.
Trait Implementations§
Source§impl VmfSerializable for Solid
impl VmfSerializable for Solid
impl StructuralPartialEq for Solid
Auto Trait Implementations§
impl Freeze for Solid
impl RefUnwindSafe for Solid
impl Send for Solid
impl Sync for Solid
impl Unpin for Solid
impl UnwindSafe for Solid
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