#[repr(C)]pub struct k_timepoint_t {
pub tick: u64,
}
Expand description
@brief Kernel timepoint type
Absolute timepoints are stored in this opaque type. It is best not to inspect its content directly.
@see sys_timepoint_calc() @see sys_timepoint_timeout() @see sys_timepoint_expired()
Fields§
§tick: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for k_timepoint_t
impl RefUnwindSafe for k_timepoint_t
impl Send for k_timepoint_t
impl Sync for k_timepoint_t
impl Unpin for k_timepoint_t
impl UnwindSafe for k_timepoint_t
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