pub struct PluginActionInvokeRequest {
pub protocol: u32,
pub plugin_id: Uuid,
pub operation: PluginActionOperation,
pub action_id: String,
pub context: PluginActionContext,
}Fields§
§protocol: u32§plugin_id: Uuid§operation: PluginActionOperation§action_id: String§context: PluginActionContextImplementations§
Trait Implementations§
Source§impl Clone for PluginActionInvokeRequest
impl Clone for PluginActionInvokeRequest
Source§fn clone(&self) -> PluginActionInvokeRequest
fn clone(&self) -> PluginActionInvokeRequest
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 PluginActionInvokeRequest
impl Debug for PluginActionInvokeRequest
Source§impl<'de> Deserialize<'de> for PluginActionInvokeRequest
impl<'de> Deserialize<'de> for PluginActionInvokeRequest
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
impl Eq for PluginActionInvokeRequest
impl StructuralPartialEq for PluginActionInvokeRequest
Auto Trait Implementations§
impl Freeze for PluginActionInvokeRequest
impl RefUnwindSafe for PluginActionInvokeRequest
impl Send for PluginActionInvokeRequest
impl Sync for PluginActionInvokeRequest
impl Unpin for PluginActionInvokeRequest
impl UnsafeUnpin for PluginActionInvokeRequest
impl UnwindSafe for PluginActionInvokeRequest
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