pub struct Time {
pub year: c_int,
pub month: c_int,
pub day_of_week: c_int,
pub day_of_month: c_int,
pub hour: c_int,
pub minute: c_int,
pub second: c_int,
pub millisecond: c_int,
}Expand description
See _cef_time_t for more documentation.
Fields§
§year: c_int§month: c_int§day_of_week: c_int§day_of_month: c_int§hour: c_int§minute: c_int§second: c_int§millisecond: c_intTrait Implementations§
Source§impl From<Time> for _cef_time_t
impl From<Time> for _cef_time_t
Source§impl From<_cef_time_t> for Time
impl From<_cef_time_t> for Time
Source§fn from(value: _cef_time_t) -> Self
fn from(value: _cef_time_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Time
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
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