pub struct ReadSettingResponse {
pub val: Vec<u8>,
pub max_size: Option<u32>,
}Expand description
Response for ReadSetting command
Fields§
§val: Vec<u8>The returned data.
Note that the underlying data type cannot be specified through this and must be known by the client.
max_size: Option<u32>Will be set if the maximum supported data size is smaller than the maximum requested data size, and contains the maximum data size which the device supports
Trait Implementations§
Source§impl Clone for ReadSettingResponse
impl Clone for ReadSettingResponse
Source§fn clone(&self) -> ReadSettingResponse
fn clone(&self) -> ReadSettingResponse
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 ReadSettingResponse
impl Debug for ReadSettingResponse
Source§impl<'de> Deserialize<'de> for ReadSettingResponse
impl<'de> Deserialize<'de> for ReadSettingResponse
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 PartialEq for ReadSettingResponse
impl PartialEq for ReadSettingResponse
impl Eq for ReadSettingResponse
impl StructuralPartialEq for ReadSettingResponse
Auto Trait Implementations§
impl Freeze for ReadSettingResponse
impl RefUnwindSafe for ReadSettingResponse
impl Send for ReadSettingResponse
impl Sync for ReadSettingResponse
impl Unpin for ReadSettingResponse
impl UnsafeUnpin for ReadSettingResponse
impl UnwindSafe for ReadSettingResponse
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