pub struct GetPropertyResponse {
pub status: StatusCode,
pub response_words: Box<[u32]>,
pub property: PropertyTag,
}Expand description
Response structure for CommandTag::GetProperty command
Contains the status code, raw response words, and parsed property value.
Fields§
§status: StatusCodeStatus code of the operation
response_words: Box<[u32]>Raw response words from the device
property: PropertyTagParsed property value
Trait Implementations§
Source§impl Clone for GetPropertyResponse
impl Clone for GetPropertyResponse
Source§fn clone(&self) -> GetPropertyResponse
fn clone(&self) -> GetPropertyResponse
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 moreAuto Trait Implementations§
impl Freeze for GetPropertyResponse
impl RefUnwindSafe for GetPropertyResponse
impl Send for GetPropertyResponse
impl Sync for GetPropertyResponse
impl Unpin for GetPropertyResponse
impl UnwindSafe for GetPropertyResponse
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