#[repr(C)]pub struct rcl_jump_callback_info_t {
pub callback: rcl_jump_callback_t,
pub threshold: rcl_jump_threshold_t,
pub user_data: *mut c_void,
}
Expand description
Struct to describe an added callback.
Fields
callback: rcl_jump_callback_t
Callback to fucntion.
threshold: rcl_jump_threshold_t
Threshold to decide when to call the callback.
user_data: *mut c_void
Pointer passed to the callback.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for rcl_jump_callback_info_t
impl !Send for rcl_jump_callback_info_t
impl !Sync for rcl_jump_callback_info_t
impl Unpin for rcl_jump_callback_info_t
impl UnwindSafe for rcl_jump_callback_info_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