pub struct AppendRecord<T = Record>(/* private fields */);Implementations§
Source§impl<T> AppendRecord<T>
impl<T> AppendRecord<T>
pub fn parts(&self) -> &AppendRecordParts<T>
pub fn into_parts(self) -> AppendRecordParts<T>
Trait Implementations§
Source§impl<T: Clone> Clone for AppendRecord<T>
impl<T: Clone> Clone for AppendRecord<T>
Source§impl<T: Debug> Debug for AppendRecord<T>
impl<T: Debug> Debug for AppendRecord<T>
Source§impl<T> From<AppendRecord<T>> for AppendRecordParts<T>
impl<T> From<AppendRecord<T>> for AppendRecordParts<T>
Source§fn from(record: AppendRecord<T>) -> Self
fn from(record: AppendRecord<T>) -> Self
Converts to this type from the input type.
Source§impl<T> MeteredSize for AppendRecord<T>
impl<T> MeteredSize for AppendRecord<T>
Source§fn metered_size(&self) -> usize
fn metered_size(&self) -> usize
Return the metered size of a record or batch of records.
Source§impl<T> TryFrom<AppendRecordParts<T>> for AppendRecord<T>
impl<T> TryFrom<AppendRecordParts<T>> for AppendRecord<T>
Auto Trait Implementations§
impl<T> Freeze for AppendRecord<T>where
AppendRecordParts<T>: Freeze,
impl<T> RefUnwindSafe for AppendRecord<T>where
AppendRecordParts<T>: RefUnwindSafe,
impl<T> Send for AppendRecord<T>where
AppendRecordParts<T>: Send,
impl<T> Sync for AppendRecord<T>where
AppendRecordParts<T>: Sync,
impl<T> Unpin for AppendRecord<T>where
AppendRecordParts<T>: Unpin,
impl<T> UnsafeUnpin for AppendRecord<T>where
AppendRecordParts<T>: UnsafeUnpin,
impl<T> UnwindSafe for AppendRecord<T>where
AppendRecordParts<T>: UnwindSafe,
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