pub struct EffectObject {
pub id: usize,
pub data_offset: Option<usize>,
pub size: usize,
pub owner_name: Option<String>,
pub owner_type: Option<u32>,
}Fields§
§id: usize§data_offset: Option<usize>§size: usize§owner_name: Option<String>§owner_type: Option<u32>Trait Implementations§
Source§impl Clone for EffectObject
impl Clone for EffectObject
Source§fn clone(&self) -> EffectObject
fn clone(&self) -> EffectObject
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 EffectObject
impl Debug for EffectObject
Source§impl Default for EffectObject
impl Default for EffectObject
Source§fn default() -> EffectObject
fn default() -> EffectObject
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EffectObject
impl RefUnwindSafe for EffectObject
impl Send for EffectObject
impl Sync for EffectObject
impl Unpin for EffectObject
impl UnsafeUnpin for EffectObject
impl UnwindSafe for EffectObject
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