pub struct ActionSchema {
pub name: String,
pub description: String,
pub is_async: bool,
pub properties: HashMap<String, PropertySchema>,
}Expand description
Re-export nemo-plugin-api for convenience Schema for an action.
Fields§
§name: StringAction name.
description: StringDescription.
is_async: boolWhether action is async.
properties: HashMap<String, PropertySchema>Configuration properties.
Implementations§
Source§impl ActionSchema
impl ActionSchema
Sourcepub fn new(name: impl Into<String>) -> ActionSchema
pub fn new(name: impl Into<String>) -> ActionSchema
Creates a new action schema.
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<ActionSchema, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ActionSchema, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ActionSchema
impl Serialize for ActionSchema
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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