pub struct LogicTimer<'a> {
pub lowerrandombound: Option<u8>,
pub ontimer: &'a str,
pub ontimerhigh: Option<&'a str>,
pub ontimerlow: Option<&'a str>,
pub origin: Vector,
pub refiretime: Option<f32>,
pub spawnflags: Option<u32>,
pub startdisabled: bool,
pub targetname: Option<&'a str>,
pub upperrandombound: Option<u8>,
pub userandomtime: bool,
}Fields§
§lowerrandombound: Option<u8>§ontimer: &'a str§ontimerhigh: Option<&'a str>§ontimerlow: Option<&'a str>§origin: Vector§refiretime: Option<f32>§spawnflags: Option<u32>§startdisabled: bool§targetname: Option<&'a str>§upperrandombound: Option<u8>§userandomtime: boolTrait Implementations§
Source§impl<'a> Clone for LogicTimer<'a>
impl<'a> Clone for LogicTimer<'a>
Source§fn clone(&self) -> LogicTimer<'a>
fn clone(&self) -> LogicTimer<'a>
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<'a> Debug for LogicTimer<'a>
impl<'a> Debug for LogicTimer<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for LogicTimer<'a>
impl<'de: 'a, 'a> Deserialize<'de> for LogicTimer<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for LogicTimer<'a>
impl<'a> RefUnwindSafe for LogicTimer<'a>
impl<'a> Send for LogicTimer<'a>
impl<'a> Sync for LogicTimer<'a>
impl<'a> Unpin for LogicTimer<'a>
impl<'a> UnwindSafe for LogicTimer<'a>
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