pub struct DebugObjectSpriteBinding {Show 23 fields
pub stage: usize,
pub obj_idx: usize,
pub is_bg: bool,
pub layer_id: Option<LayerId>,
pub sprite_id: Option<SpriteId>,
pub file: Option<String>,
pub patno: i64,
pub disp: bool,
pub x: i64,
pub y: i64,
pub layer_no: i64,
pub order: i64,
pub alpha: i64,
pub z: i64,
pub tr: i64,
pub clip_use: i64,
pub clip_left: i64,
pub clip_top: i64,
pub clip_right: i64,
pub clip_bottom: i64,
pub scale_x: i64,
pub scale_y: i64,
pub rotate_z: i64,
}Fields§
§stage: usize§obj_idx: usize§is_bg: bool§layer_id: Option<LayerId>§sprite_id: Option<SpriteId>§file: Option<String>§patno: i64§disp: bool§x: i64§y: i64§layer_no: i64§order: i64§alpha: i64§z: i64§tr: i64§clip_use: i64§clip_left: i64§clip_top: i64§clip_right: i64§clip_bottom: i64§scale_x: i64§scale_y: i64§rotate_z: i64Trait Implementations§
Source§impl Clone for DebugObjectSpriteBinding
impl Clone for DebugObjectSpriteBinding
Source§fn clone(&self) -> DebugObjectSpriteBinding
fn clone(&self) -> DebugObjectSpriteBinding
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 moreAuto Trait Implementations§
impl Freeze for DebugObjectSpriteBinding
impl RefUnwindSafe for DebugObjectSpriteBinding
impl Send for DebugObjectSpriteBinding
impl Sync for DebugObjectSpriteBinding
impl Unpin for DebugObjectSpriteBinding
impl UnsafeUnpin for DebugObjectSpriteBinding
impl UnwindSafe for DebugObjectSpriteBinding
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,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.