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