pub struct DecideSnapshotRow {
pub event_id: String,
pub context_hash: String,
pub engine_version: String,
pub schema_version: String,
pub redaction_level: String,
pub village_id: Option<String>,
pub cycle_id: Option<String>,
pub has_blobs: bool,
pub created_at: String,
}Expand description
A decide snapshot row.
Fields§
§event_id: String§context_hash: String§engine_version: String§schema_version: String§redaction_level: String§village_id: Option<String>§cycle_id: Option<String>§has_blobs: bool§created_at: StringTrait Implementations§
Source§impl Clone for DecideSnapshotRow
impl Clone for DecideSnapshotRow
Source§fn clone(&self) -> DecideSnapshotRow
fn clone(&self) -> DecideSnapshotRow
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 DecideSnapshotRow
impl Debug for DecideSnapshotRow
Source§impl<'de> Deserialize<'de> for DecideSnapshotRow
impl<'de> Deserialize<'de> for DecideSnapshotRow
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 DecideSnapshotRow
impl RefUnwindSafe for DecideSnapshotRow
impl Send for DecideSnapshotRow
impl Sync for DecideSnapshotRow
impl Unpin for DecideSnapshotRow
impl UnsafeUnpin for DecideSnapshotRow
impl UnwindSafe for DecideSnapshotRow
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