Struct shiv_transform::TransformBundle
source · pub struct TransformBundle {
pub transform: Transform,
pub global_transform: GlobalTransform,
}
Fields§
§transform: Transform
§global_transform: GlobalTransform
Trait Implementations§
source§impl Bundle for TransformBundle
impl Bundle for TransformBundle
type Iter = IntoIter<*mut u8, 2>
fn components(components: &mut Components) -> Vec<ComponentId>
unsafe fn get_components(bundle: *mut Self) -> Self::Iter
source§impl Clone for TransformBundle
impl Clone for TransformBundle
source§fn clone(&self) -> TransformBundle
fn clone(&self) -> TransformBundle
Returns a copy 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 TransformBundle
impl Debug for TransformBundle
source§impl Default for TransformBundle
impl Default for TransformBundle
source§fn default() -> TransformBundle
fn default() -> TransformBundle
Returns the “default value” for a type. Read more
impl Copy for TransformBundle
Auto Trait Implementations§
impl RefUnwindSafe for TransformBundle
impl Send for TransformBundle
impl Sync for TransformBundle
impl Unpin for TransformBundle
impl UnwindSafe for TransformBundle
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§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. Read more§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. Read more