pub struct DeviceRecall {
pub values: Option<Values>,
pub write_dates: Option<WriteDates>,
}Expand description
Contains the recall bits per device set by the developer.
This type is not used in any activity, and only used as part of another schema.
Fields§
§values: Option<Values>Required. Contains the recall bits values.
write_dates: Option<WriteDates>Required. Contains the recall bits write dates.
Trait Implementations§
Source§impl Clone for DeviceRecall
impl Clone for DeviceRecall
Source§fn clone(&self) -> DeviceRecall
fn clone(&self) -> DeviceRecall
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 DeviceRecall
impl Debug for DeviceRecall
Source§impl Default for DeviceRecall
impl Default for DeviceRecall
Source§fn default() -> DeviceRecall
fn default() -> DeviceRecall
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceRecall
impl<'de> Deserialize<'de> for DeviceRecall
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 Serialize for DeviceRecall
impl Serialize for DeviceRecall
impl Part for DeviceRecall
Auto Trait Implementations§
impl Freeze for DeviceRecall
impl RefUnwindSafe for DeviceRecall
impl Send for DeviceRecall
impl Sync for DeviceRecall
impl Unpin for DeviceRecall
impl UnwindSafe for DeviceRecall
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