pub type Result<T> = Result<T, LastFmError>;Expand description
A convenient type alias for Result with LastFmError as the error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(LastFmError),
}pub type Result<T> = Result<T, LastFmError>;A convenient type alias for Result with LastFmError as the error type.
pub enum Result<T> {
Ok(T),
Err(LastFmError),
}