pub struct AvatarEffectData {
pub effect_type: i32,
pub sub_type: i32,
pub duration: i32,
pub inactive_effects_in_inventory: i32,
pub seconds_left_if_active: i32,
pub is_permanent: bool,
}
Fields§
§effect_type: i32
§sub_type: i32
§duration: i32
§inactive_effects_in_inventory: i32
§seconds_left_if_active: i32
§is_permanent: bool
Trait Implementations§
Source§impl Clone for AvatarEffectData
impl Clone for AvatarEffectData
Source§fn clone(&self) -> AvatarEffectData
fn clone(&self) -> AvatarEffectData
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 AvatarEffectData
impl Debug for AvatarEffectData
Source§impl Default for AvatarEffectData
impl Default for AvatarEffectData
Source§fn default() -> AvatarEffectData
fn default() -> AvatarEffectData
Returns the “default value” for a type. Read more
Source§impl PacketVariable for AvatarEffectData
impl PacketVariable for AvatarEffectData
Source§impl PartialEq for AvatarEffectData
impl PartialEq for AvatarEffectData
impl StructuralPartialEq for AvatarEffectData
Auto Trait Implementations§
impl Freeze for AvatarEffectData
impl RefUnwindSafe for AvatarEffectData
impl Send for AvatarEffectData
impl Sync for AvatarEffectData
impl Unpin for AvatarEffectData
impl UnwindSafe for AvatarEffectData
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