pub type VtxResult<T> = Result<T, VtxError>;Expand description
Plugin standard result type alias.
Recommended for use in all interfaces returning VtxError to ensure a unified error chain.
Aliased Type§
pub enum VtxResult<T> {
Ok(T),
Err(VtxError),
}