pub struct LeapSecondsKernel {
pub delta_t_a: f64,
pub k: f64,
pub eb: f64,
pub m: [f64; 2],
pub delta_at: Vec<DeltaAtEntry>,
}Expand description
Structured contents of a KPL/LSK leapseconds kernel.
Fields§
§delta_t_a: f64§k: f64§eb: f64§m: [f64; 2]§delta_at: Vec<DeltaAtEntry>Trait Implementations§
Source§impl Clone for LeapSecondsKernel
impl Clone for LeapSecondsKernel
Source§fn clone(&self) -> LeapSecondsKernel
fn clone(&self) -> LeapSecondsKernel
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 LeapSecondsKernel
impl Debug for LeapSecondsKernel
Source§impl PartialEq for LeapSecondsKernel
impl PartialEq for LeapSecondsKernel
impl StructuralPartialEq for LeapSecondsKernel
Auto Trait Implementations§
impl Freeze for LeapSecondsKernel
impl RefUnwindSafe for LeapSecondsKernel
impl Send for LeapSecondsKernel
impl Sync for LeapSecondsKernel
impl Unpin for LeapSecondsKernel
impl UnsafeUnpin for LeapSecondsKernel
impl UnwindSafe for LeapSecondsKernel
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