pub struct LegalEntityDirectorshipDeclaration {
pub date: Option<Timestamp>,
pub ip: Option<String>,
pub user_agent: Option<String>,
}Fields§
§date: Option<Timestamp>The Unix timestamp marking when the directorship declaration attestation was made.
ip: Option<String>The IP address from which the directorship declaration attestation was made.
user_agent: Option<String>The user-agent string from the browser where the directorship declaration attestation was made.
Trait Implementations§
Source§impl Clone for LegalEntityDirectorshipDeclaration
impl Clone for LegalEntityDirectorshipDeclaration
Source§fn clone(&self) -> LegalEntityDirectorshipDeclaration
fn clone(&self) -> LegalEntityDirectorshipDeclaration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LegalEntityDirectorshipDeclaration
impl FromValueOpt for LegalEntityDirectorshipDeclaration
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for LegalEntityDirectorshipDeclaration
impl PartialEq for LegalEntityDirectorshipDeclaration
Source§fn eq(&self, other: &LegalEntityDirectorshipDeclaration) -> bool
fn eq(&self, other: &LegalEntityDirectorshipDeclaration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LegalEntityDirectorshipDeclaration
impl StructuralPartialEq for LegalEntityDirectorshipDeclaration
Auto Trait Implementations§
impl Freeze for LegalEntityDirectorshipDeclaration
impl RefUnwindSafe for LegalEntityDirectorshipDeclaration
impl Send for LegalEntityDirectorshipDeclaration
impl Sync for LegalEntityDirectorshipDeclaration
impl Unpin for LegalEntityDirectorshipDeclaration
impl UnsafeUnpin for LegalEntityDirectorshipDeclaration
impl UnwindSafe for LegalEntityDirectorshipDeclaration
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