pub struct ActionInsert {Show 14 fields
pub session_id: String,
pub page_id: Option<String>,
pub primitive: String,
pub args_redacted: String,
pub args_hash: String,
pub before_token: Option<String>,
pub after_token: Option<String>,
pub idempotency_hit: bool,
pub result_summary: Option<String>,
pub latency_ms: i64,
pub group_label: Option<String>,
pub started_at: i64,
pub finished_at: i64,
pub error_code: Option<String>,
}Expand description
What Store::record_action takes.
Fields§
§session_id: String§page_id: Option<String>§primitive: String§args_redacted: String§args_hash: String§before_token: Option<String>§after_token: Option<String>§idempotency_hit: bool§result_summary: Option<String>§latency_ms: i64§group_label: Option<String>§started_at: i64§finished_at: i64§error_code: Option<String>Trait Implementations§
Source§impl Clone for ActionInsert
impl Clone for ActionInsert
Source§fn clone(&self) -> ActionInsert
fn clone(&self) -> ActionInsert
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 ActionInsert
impl Debug for ActionInsert
Source§impl PartialEq for ActionInsert
impl PartialEq for ActionInsert
Source§fn eq(&self, other: &ActionInsert) -> bool
fn eq(&self, other: &ActionInsert) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ActionInsert
impl StructuralPartialEq for ActionInsert
Auto Trait Implementations§
impl Freeze for ActionInsert
impl RefUnwindSafe for ActionInsert
impl Send for ActionInsert
impl Sync for ActionInsert
impl Unpin for ActionInsert
impl UnsafeUnpin for ActionInsert
impl UnwindSafe for ActionInsert
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