pub struct StaticAddresses {
pub base: i32,
pub status: i32,
pub menu_mods: i32,
pub rulesets: i32,
pub playtime: i32,
pub skin: i32,
pub chat_checker: i32,
pub audio_time_base: i32,
pub ig_time_base: i32,
pub settings: i32,
pub user_profile: i32,
}Fields§
§base: i32§status: i32§rulesets: i32§playtime: i32§skin: i32§chat_checker: i32§audio_time_base: i32§ig_time_base: i32§settings: i32§user_profile: i32Implementations§
Trait Implementations§
Source§impl Clone for StaticAddresses
impl Clone for StaticAddresses
Source§fn clone(&self) -> StaticAddresses
fn clone(&self) -> StaticAddresses
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 Default for StaticAddresses
impl Default for StaticAddresses
Source§fn default() -> StaticAddresses
fn default() -> StaticAddresses
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StaticAddresses
impl RefUnwindSafe for StaticAddresses
impl Send for StaticAddresses
impl Sync for StaticAddresses
impl Unpin for StaticAddresses
impl UnwindSafe for StaticAddresses
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