pub struct UiActionScriptV2 {
pub schema_version: u32,
pub meta: Option<UiScriptMetaV1>,
pub steps: Vec<UiActionStepV2>,
}Expand description
Scripted UI interaction plan (schema v2).
This is the preferred schema for new scripts and generators.
Fields§
§schema_version: u32§meta: Option<UiScriptMetaV1>§steps: Vec<UiActionStepV2>Trait Implementations§
Source§impl Clone for UiActionScriptV2
impl Clone for UiActionScriptV2
Source§fn clone(&self) -> UiActionScriptV2
fn clone(&self) -> UiActionScriptV2
Returns a duplicate of the value. Read more
1.0.0 · 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 UiActionScriptV2
impl Debug for UiActionScriptV2
Source§impl<'de> Deserialize<'de> for UiActionScriptV2
impl<'de> Deserialize<'de> for UiActionScriptV2
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
Auto Trait Implementations§
impl Freeze for UiActionScriptV2
impl RefUnwindSafe for UiActionScriptV2
impl Send for UiActionScriptV2
impl Sync for UiActionScriptV2
impl Unpin for UiActionScriptV2
impl UnsafeUnpin for UiActionScriptV2
impl UnwindSafe for UiActionScriptV2
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