pub struct Cordons {
pub active: i8,
pub cordons: Vec<Cordon>,
}Expand description
Represents the cordons data in a VMF file.
Fields§
§active: i8The index of the active cordon.
cordons: Vec<Cordon>The list of cordons.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cordons
impl<'de> Deserialize<'de> for Cordons
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl VmfSerializable for Cordons
impl VmfSerializable for Cordons
Auto Trait Implementations§
impl Freeze for Cordons
impl RefUnwindSafe for Cordons
impl Send for Cordons
impl Sync for Cordons
impl Unpin for Cordons
impl UnwindSafe for Cordons
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