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