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 (const: unstable) · 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
Source§fn eq(&self, other: &ReadSettingResponse) -> bool
fn eq(&self, other: &ReadSettingResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more