pub struct VerbBinding {
pub verb: CanonicalVerb,
pub action_name: ActionName,
pub requires_feature: Option<FeatureId>,
pub arg_map: BTreeMap<String, String>,
}Expand description
Declarative canonical-verb → native-action mapping (spine §4.1
VerbBinding; R7: the compiler executes zero provider code).
Fields§
§verb: CanonicalVerbThe canonical verb being bound.
action_name: ActionNameThe provider-native action name (e.g. tap → tapElement).
requires_feature: Option<FeatureId>Feature gating the binding (e.g. the semantic five →
device.semanticActions.v1).
arg_map: BTreeMap<String, String>Declarative field mapping from verb argument names to native action argument names.
Trait Implementations§
Source§impl Clone for VerbBinding
impl Clone for VerbBinding
Source§fn clone(&self) -> VerbBinding
fn clone(&self) -> VerbBinding
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 VerbBinding
impl Debug for VerbBinding
Source§impl<'de> Deserialize<'de> for VerbBinding
impl<'de> Deserialize<'de> for VerbBinding
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
impl Eq for VerbBinding
Source§impl JsonSchema for VerbBinding
impl JsonSchema for VerbBinding
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 VerbBinding
impl PartialEq for VerbBinding
Source§impl Serialize for VerbBinding
impl Serialize for VerbBinding
impl StructuralPartialEq for VerbBinding
Auto Trait Implementations§
impl Freeze for VerbBinding
impl RefUnwindSafe for VerbBinding
impl Send for VerbBinding
impl Sync for VerbBinding
impl Unpin for VerbBinding
impl UnsafeUnpin for VerbBinding
impl UnwindSafe for VerbBinding
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