pub struct InspectReport {
pub path: String,
pub topics: Vec<TopicInfo>,
pub start_time: Option<Timestamp>,
pub end_time: Option<Timestamp>,
}Expand description
Summary of an MCAP file’s contents.
Fields§
§path: String§topics: Vec<TopicInfo>§start_time: Option<Timestamp>§end_time: Option<Timestamp>Trait Implementations§
Source§impl Clone for InspectReport
impl Clone for InspectReport
Source§fn clone(&self) -> InspectReport
fn clone(&self) -> InspectReport
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 InspectReport
impl Debug for InspectReport
Source§impl Default for InspectReport
impl Default for InspectReport
Source§fn default() -> InspectReport
fn default() -> InspectReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InspectReport
impl RefUnwindSafe for InspectReport
impl Send for InspectReport
impl Sync for InspectReport
impl Unpin for InspectReport
impl UnsafeUnpin for InspectReport
impl UnwindSafe for InspectReport
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