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§fn clone(&self) -> AppendRecord<T>
fn clone(&self) -> AppendRecord<T>
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 moreSource§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
T: Freeze,
impl<T> RefUnwindSafe for AppendRecord<T>where
T: RefUnwindSafe,
impl<T> Send for AppendRecord<T>where
T: Send,
impl<T> Sync for AppendRecord<T>where
T: Sync,
impl<T> Unpin for AppendRecord<T>where
T: Unpin,
impl<T> UnsafeUnpin for AppendRecord<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for AppendRecord<T>where
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