pub trait SyncComponent {
    // Required methods
    fn sync_component<T: Component + TypePath + DynamicTypePath + Reflect + FromReflect + GetTypeRegistration>(
        &mut self
    ) -> &mut Self;
    fn sync_materials(&mut self, enable: bool);
    fn sync_meshes(&mut self, enable: bool);
}

Required Methods§

source

fn sync_component<T: Component + TypePath + DynamicTypePath + Reflect + FromReflect + GetTypeRegistration>( &mut self ) -> &mut Self

source

fn sync_materials(&mut self, enable: bool)

source

fn sync_meshes(&mut self, enable: bool)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SyncComponent for App

source§

fn sync_component<T: Component + TypePath + DynamicTypePath + Reflect + FromReflect + GetTypeRegistration>( &mut self ) -> &mut Self

source§

fn sync_materials(&mut self, enable: bool)

source§

fn sync_meshes(&mut self, enable: bool)

Implementors§