pub type PylonResult<T> = Result<T, PylonError>;Expand description
Convenient result type used throughout the crate.
Aliased Type§
pub enum PylonResult<T> {
Ok(T),
Err(PylonError),
}pub type PylonResult<T> = Result<T, PylonError>;Convenient result type used throughout the crate.
pub enum PylonResult<T> {
Ok(T),
Err(PylonError),
}