pub struct Channel<'a> {
pub topic: String,
pub schema: Option<Arc<Schema<'a>>>,
pub message_encoding: String,
pub metadata: BTreeMap<String, String>,
}Expand description
Describes a channel which Messages are published to in an MCAP file
Fields
topic: Stringschema: Option<Arc<Schema<'a>>>message_encoding: Stringmetadata: BTreeMap<String, String>Trait Implementations
sourceimpl<'a> PartialEq<Channel<'a>> for Channel<'a>
impl<'a> PartialEq<Channel<'a>> for Channel<'a>
impl<'a> Eq for Channel<'a>
impl<'a> StructuralEq for Channel<'a>
impl<'a> StructuralPartialEq for Channel<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Channel<'a>
impl<'a> Send for Channel<'a>
impl<'a> Sync for Channel<'a>
impl<'a> Unpin for Channel<'a>
impl<'a> UnwindSafe for Channel<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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