[][src]Struct rosbag::record_types::ChunkInfo

pub struct ChunkInfo<'a> {
    pub ver: u32,
    pub chunk_pos: u64,
    pub start_time: u64,
    pub end_time: u64,
    // some fields omitted
}

High-level index of Chunk records.

Fields

ver: u32

Chunk info record version (only version 1 is currently cupported)

chunk_pos: u64

Offset of the chunk record relative to the bag file beginning

start_time: u64

Timestamp of earliest message in the chunk in nanoseconds of UNIX epoch

end_time: u64

Timestamp of latest message in the chunk in nanoseconds of UNIX epoch

Methods

impl<'a> ChunkInfo<'a>[src]

Important traits for ChunkInfoEntriesIterator<'a>
pub fn entries(&'a self) -> ChunkInfoEntriesIterator<'a>[src]

Trait Implementations

impl<'a> Clone for ChunkInfo<'a>[src]

impl<'a> Debug for ChunkInfo<'a>[src]

Auto Trait Implementations

impl<'a> Send for ChunkInfo<'a>

impl<'a> Sync for ChunkInfo<'a>

impl<'a> Unpin for ChunkInfo<'a>

impl<'a> UnwindSafe for ChunkInfo<'a>

impl<'a> RefUnwindSafe for ChunkInfo<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]