pub struct PluginActionDef {
pub name: String,
pub description: String,
pub kind: PluginActionKind,
pub session_param: SessionParam,
pub input_schema: Value,
pub output_schema: Value,
}Fields§
§name: String§description: String§kind: PluginActionKind§session_param: SessionParam§input_schema: Value§output_schema: ValueTrait Implementations§
Source§impl Clone for PluginActionDef
impl Clone for PluginActionDef
Source§fn clone(&self) -> PluginActionDef
fn clone(&self) -> PluginActionDef
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 PluginActionDef
impl Debug for PluginActionDef
Source§impl<'de> Deserialize<'de> for PluginActionDef
impl<'de> Deserialize<'de> for PluginActionDef
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 PluginActionDef
impl RefUnwindSafe for PluginActionDef
impl Send for PluginActionDef
impl Sync for PluginActionDef
impl Unpin for PluginActionDef
impl UnsafeUnpin for PluginActionDef
impl UnwindSafe for PluginActionDef
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