pub struct EggressError(/* private fields */);Implementations§
Source§impl EggressError
impl EggressError
Trait Implementations§
impl DerefToPyAny for EggressError
Source§impl PyTypeInfo for EggressError
impl PyTypeInfo for EggressError
Source§const NAME: &'static str = "EggressError"
const NAME: &'static str = "EggressError"
👎Deprecated since 0.28.0:
prefer using ::type_object(py).name() to get the correct runtime value
Class name.
Source§const MODULE: Option<&'static str>
const MODULE: Option<&'static str>
👎Deprecated since 0.28.0:
prefer using ::type_object(py).module() to get the correct runtime value
Module name, if any.
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
Source§fn type_object(py: Python<'_>) -> Bound<'_, PyType>
fn type_object(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
impl ToPyErr for EggressError
Auto Trait Implementations§
impl !Freeze for EggressError
impl !RefUnwindSafe for EggressError
impl !Send for EggressError
impl !Sync for EggressError
impl Unpin for EggressError
impl UnsafeUnpin for EggressError
impl UnwindSafe for EggressError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more