pub struct ManualRecording {
pub format_version: u16,
pub recording_id: Uuid,
pub source_device_id: DeviceId,
pub action_space_sha256: String,
pub started_at_ms: u64,
pub ended_at_ms: u64,
pub steps: Vec<ManualActionStep>,
}Expand description
A bounded, Driver-neutral record of human-selected Actions.
Protected Action arguments are represented only by an opaque host-owned secret reference. The secret value is never part of this durable DTO.
Fields§
§format_version: u16§recording_id: Uuid§source_device_id: DeviceId§action_space_sha256: String§started_at_ms: u64§ended_at_ms: u64§steps: Vec<ManualActionStep>Trait Implementations§
Source§impl Clone for ManualRecording
impl Clone for ManualRecording
Source§fn clone(&self) -> ManualRecording
fn clone(&self) -> ManualRecording
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 ManualRecording
impl Debug for ManualRecording
Source§impl<'de> Deserialize<'de> for ManualRecording
impl<'de> Deserialize<'de> for ManualRecording
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 ManualRecording
impl JsonSchema for ManualRecording
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 ManualRecording
impl PartialEq for ManualRecording
Source§impl Serialize for ManualRecording
impl Serialize for ManualRecording
impl StructuralPartialEq for ManualRecording
Auto Trait Implementations§
impl Freeze for ManualRecording
impl RefUnwindSafe for ManualRecording
impl Send for ManualRecording
impl Sync for ManualRecording
impl Unpin for ManualRecording
impl UnsafeUnpin for ManualRecording
impl UnwindSafe for ManualRecording
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