pub struct ScriptVars {
pub shorts: u32,
pub longs: u32,
pub floats: u32,
}Fields§
§shorts: u32§longs: u32§floats: u32Trait Implementations§
Source§impl Clone for ScriptVars
impl Clone for ScriptVars
Source§fn clone(&self) -> ScriptVars
fn clone(&self) -> ScriptVars
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScriptVars
impl Debug for ScriptVars
Source§impl<'de> Deserialize<'de> for ScriptVars
impl<'de> Deserialize<'de> for ScriptVars
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 PartialEq for ScriptVars
impl PartialEq for ScriptVars
Source§impl Serialize for ScriptVars
impl Serialize for ScriptVars
Source§impl From<ScriptVars> for Field
impl From<ScriptVars> for Field
Source§fn from(v: ScriptVars) -> Self
fn from(v: ScriptVars) -> Self
Converts to this type from the input type.
impl Eq for ScriptVars
impl StructuralPartialEq for ScriptVars
Auto Trait Implementations§
impl Freeze for ScriptVars
impl RefUnwindSafe for ScriptVars
impl Send for ScriptVars
impl Sync for ScriptVars
impl Unpin for ScriptVars
impl UnwindSafe for ScriptVars
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more