pub enum GetDevicePropertyItems {
Data8(Vec<u8>),
Data16(Vec<u16>),
Data32(Vec<u32>),
InvalidValue(u8),
}
Variants§
Data8(Vec<u8>)
Data16(Vec<u16>)
Data32(Vec<u32>)
InvalidValue(u8)
This variant is returned when the server sends a discriminant value that does not match any of the defined by the protocol.
Usually, this should be considered a parsing error, but there are some cases where the server violates the protocol.
Trying to use serialize
or serialize_into
with this variant
will raise a panic.
Implementations§
source§impl GetDevicePropertyItems
impl GetDevicePropertyItems
fn switch_expr(&self) -> u8
Trait Implementations§
source§impl Clone for GetDevicePropertyItems
impl Clone for GetDevicePropertyItems
source§fn clone(&self) -> GetDevicePropertyItems
fn clone(&self) -> GetDevicePropertyItems
Returns a copy 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 GetDevicePropertyItems
impl RefUnwindSafe for GetDevicePropertyItems
impl Send for GetDevicePropertyItems
impl Sync for GetDevicePropertyItems
impl Unpin for GetDevicePropertyItems
impl UnwindSafe for GetDevicePropertyItems
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