pub type K2Result<T> = Result<T, K2Error>;
The core kitsune2 result type.
pub enum K2Result<T> { Ok(T), Err(K2Error), }
Contains the success value
Contains the error value