pub struct EventEntity {
pub partition_key: String,
pub row_key: String,
pub sequence_nr: i64,
pub payload_b64: String,
pub manifest: String,
pub writer_uuid: String,
pub deleted: bool,
pub tags_csv: String,
}Fields§
§partition_key: String§row_key: String§sequence_nr: i64§payload_b64: String§manifest: String§writer_uuid: String§deleted: boolImplementations§
Source§impl EventEntity
impl EventEntity
pub fn from_repr(repr: &PersistentRepr) -> Self
pub fn into_repr(self) -> PersistentRepr
Trait Implementations§
Source§impl Clone for EventEntity
impl Clone for EventEntity
Source§fn clone(&self) -> EventEntity
fn clone(&self) -> EventEntity
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 EventEntity
impl Debug for EventEntity
Source§impl<'de> Deserialize<'de> for EventEntity
impl<'de> Deserialize<'de> for EventEntity
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
Auto Trait Implementations§
impl Freeze for EventEntity
impl RefUnwindSafe for EventEntity
impl Send for EventEntity
impl Sync for EventEntity
impl Unpin for EventEntity
impl UnsafeUnpin for EventEntity
impl UnwindSafe for EventEntity
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