pub struct PluginCall {
pub plugin: String,
pub op: String,
pub input: String,
}Fields§
§plugin: String§op: String§input: StringTrait Implementations§
Source§impl Clone for PluginCall
impl Clone for PluginCall
Source§fn clone(&self) -> PluginCall
fn clone(&self) -> PluginCall
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 PluginCall
impl Debug for PluginCall
Source§impl<'de> Deserialize<'de> for PluginCall
impl<'de> Deserialize<'de> for PluginCall
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
Source§impl<'ʄ> Facet<'ʄ> for PluginCall
impl<'ʄ> Facet<'ʄ> for PluginCall
Source§impl Operation for PluginCall
impl Operation for PluginCall
Source§type Output = PluginResponse
type Output = PluginResponse
Output assigns the type this request results in.Source§impl PartialEq for PluginCall
impl PartialEq for PluginCall
Source§fn eq(&self, other: &PluginCall) -> bool
fn eq(&self, other: &PluginCall) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PluginCall
impl Serialize for PluginCall
impl Eq for PluginCall
impl StructuralPartialEq for PluginCall
Auto Trait Implementations§
impl Freeze for PluginCall
impl RefUnwindSafe for PluginCall
impl Send for PluginCall
impl Sync for PluginCall
impl Unpin for PluginCall
impl UnsafeUnpin for PluginCall
impl UnwindSafe for PluginCall
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