pub struct BufferedEntry {
pub record: AuditRecord,
pub raw_payload: Vec<u8>,
}Expand description
A single entry in the offline buffer.
Fields§
§record: AuditRecord§raw_payload: Vec<u8>Trait Implementations§
Source§impl Clone for BufferedEntry
impl Clone for BufferedEntry
Source§fn clone(&self) -> BufferedEntry
fn clone(&self) -> BufferedEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 BufferedEntry
impl RefUnwindSafe for BufferedEntry
impl Send for BufferedEntry
impl Sync for BufferedEntry
impl Unpin for BufferedEntry
impl UnsafeUnpin for BufferedEntry
impl UnwindSafe for BufferedEntry
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