pub struct FakeEntityConverter;Trait Implementations§
Source§impl LocalEntityAndGlobalEntityConverter for FakeEntityConverter
impl LocalEntityAndGlobalEntityConverter for FakeEntityConverter
fn global_entity_to_host_entity( &self, _: &GlobalEntity, ) -> Result<HostEntity, EntityDoesNotExistError>
fn global_entity_to_remote_entity( &self, _: &GlobalEntity, ) -> Result<RemoteEntity, EntityDoesNotExistError>
fn global_entity_to_owned_entity( &self, _global_entity: &GlobalEntity, ) -> Result<OwnedLocalEntity, EntityDoesNotExistError>
fn host_entity_to_global_entity( &self, _: &HostEntity, ) -> Result<GlobalEntity, EntityDoesNotExistError>
fn remote_entity_to_global_entity( &self, _: &RemoteEntity, ) -> Result<GlobalEntity, EntityDoesNotExistError>
Source§impl LocalEntityAndGlobalEntityConverterMut for FakeEntityConverter
impl LocalEntityAndGlobalEntityConverterMut for FakeEntityConverter
fn get_or_reserve_entity( &mut self, _global_entity: &GlobalEntity, ) -> Result<OwnedLocalEntity, EntityDoesNotExistError>
Auto Trait Implementations§
impl Freeze for FakeEntityConverter
impl RefUnwindSafe for FakeEntityConverter
impl Send for FakeEntityConverter
impl Sync for FakeEntityConverter
impl Unpin for FakeEntityConverter
impl UnwindSafe for FakeEntityConverter
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