pub struct ActionName(/* private fields */);Expand description
Provider-native action name (DeviceRail camelCase, e.g. tapElement).
Canonical verbs never appear here; provider-qualified names
(<provider>:<action>) are reserved for multi-provider futures and
rejected in v0.1 (spine R7 / A.6).
Implementations§
Source§impl ActionName
impl ActionName
Trait Implementations§
Source§impl AsRef<str> for ActionName
impl AsRef<str> for ActionName
Source§impl Clone for ActionName
impl Clone for ActionName
Source§fn clone(&self) -> ActionName
fn clone(&self) -> ActionName
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 ActionName
impl Debug for ActionName
Source§impl<'de> Deserialize<'de> for ActionName
impl<'de> Deserialize<'de> for ActionName
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 Display for ActionName
impl Display for ActionName
impl Eq for ActionName
Source§impl From<ActionName> for String
impl From<ActionName> for String
Source§fn from(value: ActionName) -> String
fn from(value: ActionName) -> String
Converts to this type from the input type.
Source§impl FromStr for ActionName
impl FromStr for ActionName
Source§impl Hash for ActionName
impl Hash for ActionName
Source§impl JsonSchema for ActionName
impl JsonSchema for ActionName
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§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§impl Ord for ActionName
impl Ord for ActionName
Source§fn cmp(&self, other: &ActionName) -> Ordering
fn cmp(&self, other: &ActionName) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ActionName
impl PartialEq for ActionName
Source§impl PartialOrd for ActionName
impl PartialOrd for ActionName
Source§impl Serialize for ActionName
impl Serialize for ActionName
impl StructuralPartialEq for ActionName
Source§impl TryFrom<&str> for ActionName
impl TryFrom<&str> for ActionName
Auto Trait Implementations§
impl Freeze for ActionName
impl RefUnwindSafe for ActionName
impl Send for ActionName
impl Sync for ActionName
impl Unpin for ActionName
impl UnsafeUnpin for ActionName
impl UnwindSafe for ActionName
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