pub struct RecordedActionCall {
pub id: Uuid,
pub name: String,
pub arguments: Value,
pub arguments_redacted: bool,
}Expand description
Durable representation of an Action invocation.
Standard calls preserve the historical wire shape. Protected and unknown
calls retain only correlation fields and serialize arguments as null
with an explicit argumentsRedacted marker.
Fields§
§id: Uuid§name: String§arguments: Value§arguments_redacted: boolImplementations§
Source§impl RecordedActionCall
impl RecordedActionCall
pub fn from_action_call( call: &ActionCall, protection: Option<ActionProtection>, ) -> Self
Trait Implementations§
Source§impl Clone for RecordedActionCall
impl Clone for RecordedActionCall
Source§fn clone(&self) -> RecordedActionCall
fn clone(&self) -> RecordedActionCall
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 RecordedActionCall
impl Debug for RecordedActionCall
Source§impl<'de> Deserialize<'de> for RecordedActionCall
impl<'de> Deserialize<'de> for RecordedActionCall
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
Source§impl JsonSchema for RecordedActionCall
impl JsonSchema for RecordedActionCall
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for RecordedActionCall
impl PartialEq for RecordedActionCall
Source§impl Serialize for RecordedActionCall
impl Serialize for RecordedActionCall
impl StructuralPartialEq for RecordedActionCall
Auto Trait Implementations§
impl Freeze for RecordedActionCall
impl RefUnwindSafe for RecordedActionCall
impl Send for RecordedActionCall
impl Sync for RecordedActionCall
impl Unpin for RecordedActionCall
impl UnsafeUnpin for RecordedActionCall
impl UnwindSafe for RecordedActionCall
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