pub struct ActionSchema {
pub name: String,
pub description: String,
pub is_async: bool,
pub properties: HashMap<String, PropertySchema>,
}Expand description
Schema for an action.
Fields§
§name: StringAction name.
description: StringDescription.
is_async: boolWhether action is async.
properties: HashMap<String, PropertySchema>Configuration properties.
Implementations§
Trait Implementations§
Source§impl Clone for ActionSchema
impl Clone for ActionSchema
Source§fn clone(&self) -> ActionSchema
fn clone(&self) -> ActionSchema
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 ActionSchema
impl Debug for ActionSchema
Source§impl Default for ActionSchema
impl Default for ActionSchema
Source§fn default() -> ActionSchema
fn default() -> ActionSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionSchema
impl<'de> Deserialize<'de> for ActionSchema
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 ActionSchema
impl RefUnwindSafe for ActionSchema
impl Send for ActionSchema
impl Sync for ActionSchema
impl Unpin for ActionSchema
impl UnsafeUnpin for ActionSchema
impl UnwindSafe for ActionSchema
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