pub struct ManualActionStep {
pub sequence: EventSequence,
pub captured_at_ms: u64,
pub call_id: Uuid,
pub name: String,
pub arguments: ManualActionArguments,
}Fields§
§sequence: EventSequence§captured_at_ms: u64§call_id: Uuid§name: String§arguments: ManualActionArgumentsTrait Implementations§
Source§impl Clone for ManualActionStep
impl Clone for ManualActionStep
Source§fn clone(&self) -> ManualActionStep
fn clone(&self) -> ManualActionStep
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 ManualActionStep
impl Debug for ManualActionStep
Source§impl<'de> Deserialize<'de> for ManualActionStep
impl<'de> Deserialize<'de> for ManualActionStep
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 ManualActionStep
impl JsonSchema for ManualActionStep
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 ManualActionStep
impl PartialEq for ManualActionStep
Source§impl Serialize for ManualActionStep
impl Serialize for ManualActionStep
impl StructuralPartialEq for ManualActionStep
Auto Trait Implementations§
impl Freeze for ManualActionStep
impl RefUnwindSafe for ManualActionStep
impl Send for ManualActionStep
impl Sync for ManualActionStep
impl Unpin for ManualActionStep
impl UnsafeUnpin for ManualActionStep
impl UnwindSafe for ManualActionStep
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