pub struct HdataCommand {
pub name: String,
pub pointer: Countable<PointerOrName>,
pub vars: Vec<Countable<String>>,
pub keys: Vec<String>,
}
Expand description
The hdata command, used to request structured data.
Response: Hdata
Fields§
§name: String
The name of the requested hdata.
pointer: Countable<PointerOrName>
A pointer or list name, forming the root of the path to the requested variable.
vars: Vec<Countable<String>>
A list of variable names that, with the pointer root, form the path to the requested variable (the last in the path).
keys: Vec<String>
A list of keys to return in the hdata. An empty list returns all keys.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HdataCommand
impl RefUnwindSafe for HdataCommand
impl Send for HdataCommand
impl Sync for HdataCommand
impl Unpin for HdataCommand
impl UnwindSafe for HdataCommand
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