pub struct PluginRequest {
pub directory: Option<String>,
pub plugin: Option<String>,
pub options: Option<Vec<String>>,
pub subcommand: PluginSubcommand,
}Fields§
§directory: Option<String>§plugin: Option<String>§options: Option<Vec<String>>§subcommand: PluginSubcommandTrait Implementations§
Source§impl Clone for PluginRequest
impl Clone for PluginRequest
Source§fn clone(&self) -> PluginRequest
fn clone(&self) -> PluginRequest
Returns a copy 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 PluginRequest
impl Debug for PluginRequest
Source§impl<'de> Deserialize<'de> for PluginRequest
impl<'de> Deserialize<'de> for PluginRequest
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 From<PluginRequest> for Request
impl From<PluginRequest> for Request
Source§fn from(r: PluginRequest) -> Self
fn from(r: PluginRequest) -> Self
Converts to this type from the input type.
Source§impl IntoRequest for PluginRequest
impl IntoRequest for PluginRequest
type Response = PluginResponse
Source§impl Serialize for PluginRequest
impl Serialize for PluginRequest
Source§impl TypedRequest for PluginRequest
impl TypedRequest for PluginRequest
Auto Trait Implementations§
impl Freeze for PluginRequest
impl RefUnwindSafe for PluginRequest
impl Send for PluginRequest
impl Sync for PluginRequest
impl Unpin for PluginRequest
impl UnwindSafe for PluginRequest
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