#[repr(C)]pub struct MS3SelectTime {
pub starttime: nstime_t,
pub endtime: nstime_t,
pub next: *mut MS3SelectTime,
}
Expand description
@brief Data selection structure time window definition containers
Fields§
§starttime: nstime_t
!< Earliest data for matching channels, use ::NSTUNSET for open
endtime: nstime_t
!< Latest data for matching channels, use ::NSTUNSET for open
next: *mut MS3SelectTime
!< Pointer to next selection time, NULL if the last
Trait Implementations§
Source§impl Clone for MS3SelectTime
impl Clone for MS3SelectTime
Source§fn clone(&self) -> MS3SelectTime
fn clone(&self) -> MS3SelectTime
Returns a duplicate 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 MS3SelectTime
impl Debug for MS3SelectTime
impl Copy for MS3SelectTime
Auto Trait Implementations§
impl Freeze for MS3SelectTime
impl RefUnwindSafe for MS3SelectTime
impl !Send for MS3SelectTime
impl !Sync for MS3SelectTime
impl Unpin for MS3SelectTime
impl UnwindSafe for MS3SelectTime
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