pub enum PluginSubcommand {
START = 0,
STOP = 1,
RESCAN = 2,
STARTDIR = 3,
LIST = 4,
}Variants§
Trait Implementations§
Source§impl Clone for PluginSubcommand
impl Clone for PluginSubcommand
Source§fn clone(&self) -> PluginSubcommand
fn clone(&self) -> PluginSubcommand
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 PluginSubcommand
impl Debug for PluginSubcommand
Source§impl<'de> Deserialize<'de> for PluginSubcommand
impl<'de> Deserialize<'de> for PluginSubcommand
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 Serialize for PluginSubcommand
impl Serialize for PluginSubcommand
Source§impl TryFrom<i32> for PluginSubcommand
impl TryFrom<i32> for PluginSubcommand
impl Copy for PluginSubcommand
Auto Trait Implementations§
impl Freeze for PluginSubcommand
impl RefUnwindSafe for PluginSubcommand
impl Send for PluginSubcommand
impl Sync for PluginSubcommand
impl Unpin for PluginSubcommand
impl UnwindSafe for PluginSubcommand
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