pub struct LegalEntityRepresentativeDeclaration {
pub date: Option<i64>,
pub ip: Option<String>,
pub user_agent: Option<String>,
}Fields§
§date: Option<i64>The Unix timestamp marking when the representative declaration attestation was made.
ip: Option<String>The IP address from which the representative declaration attestation was made.
user_agent: Option<String>The user-agent string from the browser where the representative declaration attestation was made.
Trait Implementations§
Source§impl Clone for LegalEntityRepresentativeDeclaration
impl Clone for LegalEntityRepresentativeDeclaration
Source§fn clone(&self) -> LegalEntityRepresentativeDeclaration
fn clone(&self) -> LegalEntityRepresentativeDeclaration
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 PartialEq for LegalEntityRepresentativeDeclaration
impl PartialEq for LegalEntityRepresentativeDeclaration
Source§fn eq(&self, other: &LegalEntityRepresentativeDeclaration) -> bool
fn eq(&self, other: &LegalEntityRepresentativeDeclaration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LegalEntityRepresentativeDeclaration
impl StructuralPartialEq for LegalEntityRepresentativeDeclaration
Auto Trait Implementations§
impl Freeze for LegalEntityRepresentativeDeclaration
impl RefUnwindSafe for LegalEntityRepresentativeDeclaration
impl Send for LegalEntityRepresentativeDeclaration
impl Sync for LegalEntityRepresentativeDeclaration
impl Unpin for LegalEntityRepresentativeDeclaration
impl UnsafeUnpin for LegalEntityRepresentativeDeclaration
impl UnwindSafe for LegalEntityRepresentativeDeclaration
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