pub struct PyTime(/* private fields */);
Expand description
Bindings for datetime.time
.
Values of this type are accessed via PyO3’s smart pointers, e.g. as
Py<PyTime>
or Bound<'py, PyTime>
.
Implementations§
Trait Implementations§
Source§impl PyTypeCheck for PyTime
Available on Py_LIMITED_API
only.
impl PyTypeCheck for PyTime
Available on
Py_LIMITED_API
only.impl DerefToPyAny for PyTime
Auto Trait Implementations§
impl !Freeze for PyTime
impl !RefUnwindSafe for PyTime
impl !Send for PyTime
impl !Sync for PyTime
impl Unpin for PyTime
impl UnwindSafe for PyTime
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