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