pub struct McapRecord {
pub topic: String,
pub log_time: Timestamp,
pub publish_time: Timestamp,
pub data: Vec<u8>,
pub schema_name: Option<String>,
}Fields§
§topic: String§log_time: Timestamp§publish_time: Timestamp§data: Vec<u8>§schema_name: Option<String>Trait Implementations§
Source§impl Clone for McapRecord
impl Clone for McapRecord
Source§fn clone(&self) -> McapRecord
fn clone(&self) -> McapRecord
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 moreAuto Trait Implementations§
impl Freeze for McapRecord
impl RefUnwindSafe for McapRecord
impl Send for McapRecord
impl Sync for McapRecord
impl Unpin for McapRecord
impl UnsafeUnpin for McapRecord
impl UnwindSafe for McapRecord
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