pub struct CheckinNote {
pub name: Option<String>,
pub value: Option<String>,
}Fields§
§name: Option<String>§value: Option<String>Implementations§
Source§impl CheckinNote
impl CheckinNote
Trait Implementations§
Source§impl Clone for CheckinNote
impl Clone for CheckinNote
Source§fn clone(&self) -> CheckinNote
fn clone(&self) -> CheckinNote
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 CheckinNote
impl Debug for CheckinNote
Source§impl Default for CheckinNote
impl Default for CheckinNote
Source§fn default() -> CheckinNote
fn default() -> CheckinNote
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckinNote
impl<'de> Deserialize<'de> for CheckinNote
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 CheckinNote
impl PartialEq for CheckinNote
Source§impl Serialize for CheckinNote
impl Serialize for CheckinNote
impl StructuralPartialEq for CheckinNote
Auto Trait Implementations§
impl Freeze for CheckinNote
impl RefUnwindSafe for CheckinNote
impl Send for CheckinNote
impl Sync for CheckinNote
impl Unpin for CheckinNote
impl UnwindSafe for CheckinNote
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