#[repr(C)]pub struct rcl_jump_threshold_t {
pub on_clock_change: bool,
pub min_forward: rcl_duration_t,
pub min_backward: rcl_duration_t,
}
Expand description
Describe the prerequisites for calling a time jump callback.
Fields
on_clock_change: bool
True to call callback when the clock type changes.
min_forward: rcl_duration_t
A positive duration indicating the minimum jump forwards to be considered exceeded, or zero to disable.
min_backward: rcl_duration_t
A negative duration indicating the minimum jump backwards to be considered exceeded, or zero to disable.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for rcl_jump_threshold_t
impl Send for rcl_jump_threshold_t
impl Sync for rcl_jump_threshold_t
impl Unpin for rcl_jump_threshold_t
impl UnwindSafe for rcl_jump_threshold_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more