pub struct Values {
pub bit_first: Option<bool>,
pub bit_second: Option<bool>,
pub bit_third: Option<bool>,
}Expand description
Contains the recall bits values.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bit_first: Option<bool>Required. First recall bit value.
bit_second: Option<bool>Required. Second recall bit value.
bit_third: Option<bool>Required. Third recall bit value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Values
impl<'de> Deserialize<'de> for Values
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
impl Part for Values
Auto Trait Implementations§
impl Freeze for Values
impl RefUnwindSafe for Values
impl Send for Values
impl Sync for Values
impl Unpin for Values
impl UnwindSafe for Values
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