pub enum CommandParameters {
CustomConfigurationUpdate(ConfigUpdateParameters),
FirmwareUpdate(FirmwareUpdateParameters),
Reboot(RebootParameters),
}
Expand description
Definition of the command parameters
Variants§
CustomConfigurationUpdate(ConfigUpdateParameters)
Configuration update command parameters
FirmwareUpdate(FirmwareUpdateParameters)
Firmware update command parameters
Reboot(RebootParameters)
Reboot command parameters
Trait Implementations§
Source§impl Clone for CommandParameters
impl Clone for CommandParameters
Source§fn clone(&self) -> CommandParameters
fn clone(&self) -> CommandParameters
Returns a duplicate 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 CommandParameters
impl Debug for CommandParameters
Source§impl<'de> Deserialize<'de> for CommandParameters
impl<'de> Deserialize<'de> for CommandParameters
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 Hash for CommandParameters
impl Hash for CommandParameters
Source§impl PartialEq for CommandParameters
impl PartialEq for CommandParameters
Source§impl Serialize for CommandParameters
impl Serialize for CommandParameters
impl Eq for CommandParameters
impl StructuralPartialEq for CommandParameters
Auto Trait Implementations§
impl Freeze for CommandParameters
impl RefUnwindSafe for CommandParameters
impl Send for CommandParameters
impl Sync for CommandParameters
impl Unpin for CommandParameters
impl UnwindSafe for CommandParameters
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