Trait bevy_reflect::GetTupleField[][src]

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

Required methods

fn get_field<T: Reflect>(&self, index: usize) -> Option<&T>[src]

fn get_field_mut<T: Reflect>(&mut self, index: usize) -> Option<&mut T>[src]

Loading content...

Implementors

impl GetTupleField for dyn Tuple[src]

impl<S: Tuple> GetTupleField for S[src]

Loading content...