pub type Result<T> = Result<T, FtrlError>;
Simplified Result using FtrlError as error type
Result
FtrlError
pub enum Result<T> { Ok(T), Err(FtrlError), }
Contains the success value
Contains the error value