pub struct ContactWindow {
pub station_id: u8,
pub start_secs: u32,
pub end_secs: u32,
}Expand description
A ground station contact window defined by start and end times.
Fields§
§station_id: u8Ground station identifier.
start_secs: u32Window start time in mission-elapsed seconds.
end_secs: u32Window end time in mission-elapsed seconds (exclusive).
Trait Implementations§
Source§impl Clone for ContactWindow
impl Clone for ContactWindow
Source§fn clone(&self) -> ContactWindow
fn clone(&self) -> ContactWindow
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 moreAuto Trait Implementations§
impl Freeze for ContactWindow
impl RefUnwindSafe for ContactWindow
impl Send for ContactWindow
impl Sync for ContactWindow
impl Unpin for ContactWindow
impl UnsafeUnpin for ContactWindow
impl UnwindSafe for ContactWindow
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