pub struct Rosbag2TfMessage {
pub bag_timestamp: u64,
pub transforms: Vec<TfTransform>,
}Expand description
One bounded rosbag2 TFMessage with its SQLite capture timestamp.
Fields§
§bag_timestamp: u64SQLite message timestamp in nanoseconds.
transforms: Vec<TfTransform>Ordered transforms carried by the TFMessage.
Trait Implementations§
Source§impl Clone for Rosbag2TfMessage
impl Clone for Rosbag2TfMessage
Source§fn clone(&self) -> Rosbag2TfMessage
fn clone(&self) -> Rosbag2TfMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Rosbag2TfMessage
impl Debug for Rosbag2TfMessage
Source§impl PartialEq for Rosbag2TfMessage
impl PartialEq for Rosbag2TfMessage
Source§fn eq(&self, other: &Rosbag2TfMessage) -> bool
fn eq(&self, other: &Rosbag2TfMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Rosbag2TfMessage
Auto Trait Implementations§
impl Freeze for Rosbag2TfMessage
impl RefUnwindSafe for Rosbag2TfMessage
impl Send for Rosbag2TfMessage
impl Sync for Rosbag2TfMessage
impl Unpin for Rosbag2TfMessage
impl UnsafeUnpin for Rosbag2TfMessage
impl UnwindSafe for Rosbag2TfMessage
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