Trait bevy::reflect::GetTupleField[]

pub trait GetTupleField {
    pub fn get_field<T>(&self, index: usize) -> Option<&T>
    where
        T: Reflect
;
pub fn get_field_mut<T>(&mut self, index: usize) -> Option<&mut T>
    where
        T: Reflect
; }

Required methods

pub fn get_field<T>(&self, index: usize) -> Option<&T> where
    T: Reflect

pub fn get_field_mut<T>(&mut self, index: usize) -> Option<&mut T> where
    T: Reflect

Loading content...

Implementors

impl GetTupleField for dyn Tuple + 'static

impl<S> GetTupleField for S where
    S: Tuple

Loading content...