#[repr(C)]pub struct CK_DATE {
pub year: [CK_CHAR; 4],
pub month: [CK_CHAR; 2],
pub day: [CK_CHAR; 2],
}Expand description
CK_DATE is a structure that defines a date
Fields§
§year: [CK_CHAR; 4]the year (“1900” - “9999”)
month: [CK_CHAR; 2]the month (“01” - “12”)
day: [CK_CHAR; 2]the day (“01” - “31”)
Trait Implementations§
impl Copy for CK_DATE
Auto Trait Implementations§
impl Freeze for CK_DATE
impl RefUnwindSafe for CK_DATE
impl Send for CK_DATE
impl Sync for CK_DATE
impl Unpin for CK_DATE
impl UnsafeUnpin for CK_DATE
impl UnwindSafe for CK_DATE
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