pub struct Agreement {
pub document_type: String,
pub is_accepted: bool,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub accepted_at: Option<String>,
}Fields§
§document_type: String§is_accepted: bool§created_at: Option<String>§updated_at: Option<String>§accepted_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Agreement
impl<'de> Deserialize<'de> for Agreement
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 Eq for Agreement
impl StructuralPartialEq for Agreement
Auto Trait Implementations§
impl Freeze for Agreement
impl RefUnwindSafe for Agreement
impl Send for Agreement
impl Sync for Agreement
impl Unpin for Agreement
impl UnsafeUnpin for Agreement
impl UnwindSafe for Agreement
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