pub struct MappingSourceSummary {Show 16 fields
pub front_topic: String,
pub rear_topic: String,
pub front_bag_message_count: u64,
pub rear_bag_message_count: u64,
pub front_chunk_count: u64,
pub rear_chunk_count: u64,
pub front_record_count: u64,
pub rear_record_count: u64,
pub total_record_count: u64,
pub total_point_count: u64,
pub retained_bytes: u64,
pub peak_source_bytes: u64,
pub start_nanos: Option<u64>,
pub end_nanos: Option<u64>,
pub full_bag_processed: bool,
pub truncated: bool,
}Expand description
Source and bounded-ingest totals for one full-bag mapping run.
Fields§
§front_topic: StringFront sensor topic consumed by the run.
rear_topic: StringRear sensor topic consumed by the run.
front_bag_message_count: u64Number of PointCloud2 messages present in the front topic.
rear_bag_message_count: u64Number of PointCloud2 messages present in the rear topic.
front_chunk_count: u64Number of bounded source chunks emitted for the front topic.
rear_chunk_count: u64Number of bounded source chunks emitted for the rear topic.
front_record_count: u64Number of complete bounded records retained from the front topic.
rear_record_count: u64Number of complete bounded records retained from the rear topic.
total_record_count: u64Total retained records across both topics.
total_point_count: u64Total retained points across both topics.
retained_bytes: u64Conservative allocated column bytes retained by the episode.
peak_source_bytes: u64Largest raw source message allocation declared by the selected topics.
start_nanos: Option<u64>First corrected timestamp, when a bag was processed.
end_nanos: Option<u64>Last corrected timestamp, when a bag was processed.
full_bag_processed: boolWhether every selected source record was consumed within the limits.
truncated: boolWhether a configured hard bound stopped source consumption.
Implementations§
Source§impl MappingSourceSummary
impl MappingSourceSummary
Sourcepub fn validate(&self) -> ViewerResult<()>
pub fn validate(&self) -> ViewerResult<()>
Validates source identities and bounded totals.
Trait Implementations§
Source§impl Clone for MappingSourceSummary
impl Clone for MappingSourceSummary
Source§fn clone(&self) -> MappingSourceSummary
fn clone(&self) -> MappingSourceSummary
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MappingSourceSummary
impl Debug for MappingSourceSummary
Source§impl<'de> Deserialize<'de> for MappingSourceSummary
impl<'de> Deserialize<'de> for MappingSourceSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for MappingSourceSummary
impl PartialEq for MappingSourceSummary
Source§fn eq(&self, other: &MappingSourceSummary) -> bool
fn eq(&self, other: &MappingSourceSummary) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for MappingSourceSummary
impl Serialize for MappingSourceSummary
impl Eq for MappingSourceSummary
impl StructuralPartialEq for MappingSourceSummary
Auto Trait Implementations§
impl Freeze for MappingSourceSummary
impl RefUnwindSafe for MappingSourceSummary
impl Send for MappingSourceSummary
impl Sync for MappingSourceSummary
impl Unpin for MappingSourceSummary
impl UnsafeUnpin for MappingSourceSummary
impl UnwindSafe for MappingSourceSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more