pub type Result<T> = Result<T, Error>;Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}Variants§
Trait Implementations§
Source§impl From<FMOD_RESULT> for Result<()>
impl From<FMOD_RESULT> for Result<()>
Source§fn from(value: FMOD_RESULT) -> Self
fn from(value: FMOD_RESULT) -> Self
Converts to this type from the input type.