pub struct DecisionRow {
pub event_id: String,
pub key: String,
pub value: String,
pub reason: String,
pub domain: String,
pub branch: String,
pub supersedes_id: Option<String>,
pub is_active: bool,
pub ts: Option<String>,
}Expand description
A row from the decisions table.
Fields§
§event_id: String§key: String§value: String§reason: String§domain: String§branch: String§supersedes_id: Option<String>§is_active: bool§ts: Option<String>Trait Implementations§
Source§impl Clone for DecisionRow
impl Clone for DecisionRow
Source§fn clone(&self) -> DecisionRow
fn clone(&self) -> DecisionRow
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 moreAuto Trait Implementations§
impl Freeze for DecisionRow
impl RefUnwindSafe for DecisionRow
impl Send for DecisionRow
impl Sync for DecisionRow
impl Unpin for DecisionRow
impl UnsafeUnpin for DecisionRow
impl UnwindSafe for DecisionRow
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