#[repr(C)]pub struct MS3Selections {
pub sidpattern: [c_char; 100],
pub timewindows: *mut MS3SelectTime,
pub next: *mut MS3Selections,
pub pubversion: u8,
}Expand description
@brief Data selection structure definition containers
Fields§
§sidpattern: [c_char; 100]!< Matching (globbing) pattern for source ID
timewindows: *mut MS3SelectTime!< Pointer to time window list for this source ID
next: *mut MS3Selections!< Pointer to next selection, NULL if the last
pubversion: u8!< Selected publication version, use 0 for any
Trait Implementations§
Source§impl Clone for MS3Selections
impl Clone for MS3Selections
Source§fn clone(&self) -> MS3Selections
fn clone(&self) -> MS3Selections
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 MS3Selections
impl Debug for MS3Selections
impl Copy for MS3Selections
Auto Trait Implementations§
impl Freeze for MS3Selections
impl RefUnwindSafe for MS3Selections
impl !Send for MS3Selections
impl !Sync for MS3Selections
impl Unpin for MS3Selections
impl UnwindSafe for MS3Selections
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