pub struct PersonAdditionalTosAcceptance {
pub date: Option<Timestamp>,
pub ip: Option<String>,
pub user_agent: Option<String>,
}
Fields§
§date: Option<Timestamp>
The Unix timestamp marking when the legal guardian accepted the service agreement.
ip: Option<String>
The IP address from which the legal guardian accepted the service agreement.
user_agent: Option<String>
The user agent of the browser from which the legal guardian accepted the service agreement.
Trait Implementations§
Source§impl Clone for PersonAdditionalTosAcceptance
impl Clone for PersonAdditionalTosAcceptance
Source§fn clone(&self) -> PersonAdditionalTosAcceptance
fn clone(&self) -> PersonAdditionalTosAcceptance
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 FromValueOpt for PersonAdditionalTosAcceptance
impl FromValueOpt for PersonAdditionalTosAcceptance
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PersonAdditionalTosAcceptance
impl RefUnwindSafe for PersonAdditionalTosAcceptance
impl Send for PersonAdditionalTosAcceptance
impl Sync for PersonAdditionalTosAcceptance
impl Unpin for PersonAdditionalTosAcceptance
impl UnwindSafe for PersonAdditionalTosAcceptance
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