#[repr(C)]pub struct SpawnsHeader {
pub _u1: u32,
pub _u2: u32,
pub _u3: u32,
pub _u4: u32,
pub devil_dagger_time: i32,
pub gold_dagger_time: i32,
pub silver_dagger_time: i32,
pub bronze_dagger_time: i32,
pub _u5: u32,
pub spawn_count: i32,
}Fields§
§_u1: u32§_u2: u32§_u3: u32§_u4: u32§devil_dagger_time: i32§gold_dagger_time: i32§silver_dagger_time: i32§bronze_dagger_time: i32§_u5: u32§spawn_count: i32Trait Implementations§
Source§impl Clone for SpawnsHeader
impl Clone for SpawnsHeader
Source§fn clone(&self) -> SpawnsHeader
fn clone(&self) -> SpawnsHeader
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SpawnsHeader
impl Debug for SpawnsHeader
Auto Trait Implementations§
impl Freeze for SpawnsHeader
impl RefUnwindSafe for SpawnsHeader
impl Send for SpawnsHeader
impl Sync for SpawnsHeader
impl Unpin for SpawnsHeader
impl UnsafeUnpin for SpawnsHeader
impl UnwindSafe for SpawnsHeader
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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