Type Alias bevy::reflect::erased_serde::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
Result type alias where the error is erased_serde::Error
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}