pub struct PersistentRepr {
pub persistence_id: String,
pub sequence_nr: u64,
pub payload: Vec<u8>,
pub manifest: String,
pub writer_uuid: String,
pub deleted: bool,
pub tags: Vec<String>,
}Fields§
§persistence_id: String§sequence_nr: u64§payload: Vec<u8>§manifest: String§writer_uuid: String§deleted: boolTrait Implementations§
Source§impl Clone for PersistentRepr
impl Clone for PersistentRepr
Source§fn clone(&self) -> PersistentRepr
fn clone(&self) -> PersistentRepr
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 moreSource§impl Debug for PersistentRepr
impl Debug for PersistentRepr
Source§impl Default for PersistentRepr
impl Default for PersistentRepr
Source§fn default() -> PersistentRepr
fn default() -> PersistentRepr
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PersistentRepr
impl RefUnwindSafe for PersistentRepr
impl Send for PersistentRepr
impl Sync for PersistentRepr
impl Unpin for PersistentRepr
impl UnsafeUnpin for PersistentRepr
impl UnwindSafe for PersistentRepr
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