pub struct StoredEvolutionEvent {
pub seq: u64,
pub timestamp: String,
pub prev_hash: String,
pub record_hash: String,
pub event: EvolutionEvent,
}Fields§
§seq: u64§timestamp: String§prev_hash: String§record_hash: String§event: EvolutionEventTrait Implementations§
Source§impl Clone for StoredEvolutionEvent
impl Clone for StoredEvolutionEvent
Source§fn clone(&self) -> StoredEvolutionEvent
fn clone(&self) -> StoredEvolutionEvent
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 StoredEvolutionEvent
impl Debug for StoredEvolutionEvent
Source§impl<'de> Deserialize<'de> for StoredEvolutionEvent
impl<'de> Deserialize<'de> for StoredEvolutionEvent
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 StoredEvolutionEvent
impl RefUnwindSafe for StoredEvolutionEvent
impl Send for StoredEvolutionEvent
impl Sync for StoredEvolutionEvent
impl Unpin for StoredEvolutionEvent
impl UnsafeUnpin for StoredEvolutionEvent
impl UnwindSafe for StoredEvolutionEvent
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