ManageOp

Enum ManageOp 

Source
pub enum ManageOp {
    Info,
    Get {
        key: PropArg,
    },
    Set {
        key: PropArg,
        value: String,
    },
    Insert {
        key: PropArg,
        item: BytesArg,
    },
    Remove {
        key: PropArg,
        selector: BytesArg,
    },
    GetMany {
        keys: Vec<PropArg>,
    },
    SetMany {
        entries: Vec<AssignArg>,
    },
    Save,
    Reset,
    Reboot,
    Ble {
        op: BleOp,
    },
    Admins {
        op: Option<TableOp>,
    },
}

Variants§

§

Info

Read the device’s capabilities and versions in one exchange.

§

Get

Read one property, by name or number.

Fields

§

Set

Write one property, by name or number.

Fields

§value: String
§

Insert

Add an entry to a table property.

Fields

§

Remove

Remove an entry from a table property.

Fields

§selector: BytesArg
§

GetMany

Read several properties in one exchange.

Fields

§keys: Vec<PropArg>
§

SetMany

Write several properties, in order, in one exchange. A failure stops the sequence where it happened.

Fields

§entries: Vec<AssignArg>
§

Save

Persist the device’s live state across reboots (CMD_SAVE).

§

Reset

Protocol reset (CMD_RST). Answered by no response: delivery is the acknowledgment.

§

Reboot

Restart the device (CMD_REBOOT), keeping everything it has persisted. Answered by no response: delivery is the acknowledgment, and a device that cannot restart says so.

§

Ble

Manage the device’s Bluetooth bonds (CAP_BLE). Unlike the resets above these answer with a status: an administrator is addressing the device’s node, not one of its Bluetooth hosts, so the link survives even a clear.

Fields

§

Admins

Nodes authorized to manage the device — including this tool.

Fields

Trait Implementations§

Source§

impl Debug for ManageOp

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromArgMatches for ManageOp

Source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Source§

fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Source§

impl Subcommand for ManageOp

Source§

fn augment_subcommands<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate Self via FromArgMatches::from_arg_matches_mut Read more
Source§

fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate self via FromArgMatches::update_from_arg_matches_mut Read more
Source§

fn has_subcommand(__clap_name: &str) -> bool

Test whether Self can parse a specific subcommand

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> AutoreleaseSafe for T
where T: ?Sized,