Trait bevy_internal::asset::processor::ErasedProcessor
source · pub trait ErasedProcessor: Send + Sync {
// Required methods
fn process<'a>(
&'a self,
context: &'a mut ProcessContext<'_>,
meta: Box<dyn AssetMetaDyn>,
writer: &'a mut (dyn AsyncWrite + Send + Sync + Unpin + 'static)
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AssetMetaDyn>, ProcessError>> + Send + 'a>>;
fn deserialize_meta(
&self,
meta: &[u8]
) -> Result<Box<dyn AssetMetaDyn>, DeserializeMetaError>;
fn default_meta(&self) -> Box<dyn AssetMetaDyn>;
}
Expand description
A type-erased variant of Process
that enables interacting with processor implementations without knowing
their type.
Required Methods§
sourcefn process<'a>(
&'a self,
context: &'a mut ProcessContext<'_>,
meta: Box<dyn AssetMetaDyn>,
writer: &'a mut (dyn AsyncWrite + Send + Sync + Unpin + 'static)
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AssetMetaDyn>, ProcessError>> + Send + 'a>>
fn process<'a>( &'a self, context: &'a mut ProcessContext<'_>, meta: Box<dyn AssetMetaDyn>, writer: &'a mut (dyn AsyncWrite + Send + Sync + Unpin + 'static) ) -> Pin<Box<dyn Future<Output = Result<Box<dyn AssetMetaDyn>, ProcessError>> + Send + 'a>>
Type-erased variant of Process::process
.