pub struct StoredRepr {
pub persistence_id: String,
pub sequence_nr: u64,
pub payload_b64: String,
pub manifest: String,
pub writer_uuid: String,
pub deleted: bool,
pub tags: Vec<String>,
}Fields§
§persistence_id: String§sequence_nr: u64§payload_b64: String§manifest: String§writer_uuid: String§deleted: boolImplementations§
Source§impl StoredRepr
impl StoredRepr
pub fn into_repr(self) -> PersistentRepr
Trait Implementations§
Source§impl Clone for StoredRepr
impl Clone for StoredRepr
Source§fn clone(&self) -> StoredRepr
fn clone(&self) -> StoredRepr
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 Debug for StoredRepr
impl Debug for StoredRepr
Source§impl<'de> Deserialize<'de> for StoredRepr
impl<'de> Deserialize<'de> for StoredRepr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&PersistentRepr> for StoredRepr
impl From<&PersistentRepr> for StoredRepr
Source§fn from(r: &PersistentRepr) -> Self
fn from(r: &PersistentRepr) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StoredRepr
impl PartialEq for StoredRepr
Source§fn eq(&self, other: &StoredRepr) -> bool
fn eq(&self, other: &StoredRepr) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StoredRepr
impl Serialize for StoredRepr
impl Eq for StoredRepr
impl StructuralPartialEq for StoredRepr
Auto Trait Implementations§
impl Freeze for StoredRepr
impl RefUnwindSafe for StoredRepr
impl Send for StoredRepr
impl Sync for StoredRepr
impl Unpin for StoredRepr
impl UnsafeUnpin for StoredRepr
impl UnwindSafe for StoredRepr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more