#[repr(C)]pub struct PyDateTime_CAPI {Show 15 fields
pub DateType: *mut PyTypeObject,
pub DateTimeType: *mut PyTypeObject,
pub TimeType: *mut PyTypeObject,
pub DeltaType: *mut PyTypeObject,
pub TZInfoType: *mut PyTypeObject,
pub TimeZone_UTC: *mut PyObject,
pub Date_FromDate: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: *mut PyTypeObject) -> *mut PyObject,
pub DateTime_FromDateAndTime: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: *mut PyTypeObject) -> *mut PyObject,
pub Time_FromTime: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: *mut PyTypeObject) -> *mut PyObject,
pub Delta_FromDelta: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyTypeObject) -> *mut PyObject,
pub TimeZone_FromTimeZone: unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject,
pub DateTime_FromTimestamp: unsafe extern "C" fn(_: *mut PyTypeObject, _: *mut PyObject, _: *mut PyObject) -> *mut PyObject,
pub Date_FromTimestamp: unsafe extern "C" fn(_: *mut PyTypeObject, _: *mut PyObject) -> *mut PyObject,
pub DateTime_FromDateAndTimeAndFold: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: i32, _: *mut PyTypeObject) -> *mut PyObject,
pub Time_FromTimeAndFold: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: i32, _: *mut PyTypeObject) -> *mut PyObject,
}
Fields§
§DateType: *mut PyTypeObject
§DateTimeType: *mut PyTypeObject
§TimeType: *mut PyTypeObject
§DeltaType: *mut PyTypeObject
§TZInfoType: *mut PyTypeObject
§TimeZone_UTC: *mut PyObject
§Date_FromDate: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: *mut PyTypeObject) -> *mut PyObject
§DateTime_FromDateAndTime: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: *mut PyTypeObject) -> *mut PyObject
§Time_FromTime: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: *mut PyTypeObject) -> *mut PyObject
§Delta_FromDelta: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyTypeObject) -> *mut PyObject
§TimeZone_FromTimeZone: unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject
§DateTime_FromTimestamp: unsafe extern "C" fn(_: *mut PyTypeObject, _: *mut PyObject, _: *mut PyObject) -> *mut PyObject
§Date_FromTimestamp: unsafe extern "C" fn(_: *mut PyTypeObject, _: *mut PyObject) -> *mut PyObject
§DateTime_FromDateAndTimeAndFold: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: i32, _: *mut PyTypeObject) -> *mut PyObject
§Time_FromTimeAndFold: unsafe extern "C" fn(_: i32, _: i32, _: i32, _: i32, _: *mut PyObject, _: i32, _: *mut PyTypeObject) -> *mut PyObject
Trait Implementations§
Source§impl Clone for PyDateTime_CAPI
impl Clone for PyDateTime_CAPI
Source§fn clone(&self) -> PyDateTime_CAPI
fn clone(&self) -> PyDateTime_CAPI
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PyDateTime_CAPI
impl Debug for PyDateTime_CAPI
impl Copy for PyDateTime_CAPI
impl Sync for PyDateTime_CAPI
Auto Trait Implementations§
impl Freeze for PyDateTime_CAPI
impl RefUnwindSafe for PyDateTime_CAPI
impl !Send for PyDateTime_CAPI
impl Unpin for PyDateTime_CAPI
impl UnwindSafe for PyDateTime_CAPI
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more