pub type Result<T> = Result<T, WireError>;
Result type alias using fraiseql-wire WireError
WireError
pub enum Result<T> { Ok(T), Err(WireError), }
Contains the success value
Contains the error value