pub struct TimeoutError(/* private fields */);Implementations§
Source§impl TimeoutError
impl TimeoutError
Trait Implementations§
impl DerefToPyAny for TimeoutError
Source§impl PyTypeInfo for TimeoutError
impl PyTypeInfo for TimeoutError
Source§const NAME: &'static str = "TimeoutError"
const NAME: &'static str = "TimeoutError"
👎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 TimeoutError
Auto Trait Implementations§
impl !Freeze for TimeoutError
impl !RefUnwindSafe for TimeoutError
impl !Send for TimeoutError
impl !Sync for TimeoutError
impl Unpin for TimeoutError
impl UnsafeUnpin for TimeoutError
impl UnwindSafe for TimeoutError
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