pub type PythonResult<T> = Result<T, PythonError>;Expand description
Python result type
Aliased Type§
pub enum PythonResult<T> {
Ok(T),
Err(PythonError),
}pub type PythonResult<T> = Result<T, PythonError>;Python result type
pub enum PythonResult<T> {
Ok(T),
Err(PythonError),
}