pub type SessionResult<T> = Result<T, SessionError>;Expand description
A result wrapper around SessionError, allowing you to wrap the Result
Aliased Type§
pub enum SessionResult<T> {
Ok(T),
Err(SessionError),
}pub type SessionResult<T> = Result<T, SessionError>;A result wrapper around SessionError, allowing you to wrap the Result
pub enum SessionResult<T> {
Ok(T),
Err(SessionError),
}