pub type FnResult<T> = Result<T, WithReturnCode<Error>>;Expand description
The return type of a plugin function
Aliased Type§
pub enum FnResult<T> {
Ok(T),
Err(WithReturnCode<Error>),
}pub type FnResult<T> = Result<T, WithReturnCode<Error>>;The return type of a plugin function
pub enum FnResult<T> {
Ok(T),
Err(WithReturnCode<Error>),
}