pub struct AppendOutcome {
pub risk_id: String,
pub event: RiskEvent,
pub log_head_sha256: String,
}Expand description
Result of append: the event written and the new chain head sha.
Fields§
§risk_id: String§event: RiskEvent§log_head_sha256: StringSHA-256 of the line just written — the new chain head.
Trait Implementations§
Source§impl Clone for AppendOutcome
impl Clone for AppendOutcome
Source§fn clone(&self) -> AppendOutcome
fn clone(&self) -> AppendOutcome
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 moreAuto Trait Implementations§
impl Freeze for AppendOutcome
impl RefUnwindSafe for AppendOutcome
impl Send for AppendOutcome
impl Sync for AppendOutcome
impl Unpin for AppendOutcome
impl UnsafeUnpin for AppendOutcome
impl UnwindSafe for AppendOutcome
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