pub struct LegalEntityUboDeclaration {
pub date: Option<Timestamp>,
pub ip: Option<String>,
pub user_agent: Option<String>,
}
Fields§
§date: Option<Timestamp>
The Unix timestamp marking when the beneficial owner attestation was made.
ip: Option<String>
The IP address from which the beneficial owner attestation was made.
user_agent: Option<String>
The user-agent string from the browser where the beneficial owner attestation was made.
Trait Implementations§
Source§impl Clone for LegalEntityUboDeclaration
impl Clone for LegalEntityUboDeclaration
Source§fn clone(&self) -> LegalEntityUboDeclaration
fn clone(&self) -> LegalEntityUboDeclaration
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 LegalEntityUboDeclaration
impl Debug for LegalEntityUboDeclaration
Source§impl FromValueOpt for LegalEntityUboDeclaration
impl FromValueOpt for LegalEntityUboDeclaration
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for LegalEntityUboDeclaration
impl RefUnwindSafe for LegalEntityUboDeclaration
impl Send for LegalEntityUboDeclaration
impl Sync for LegalEntityUboDeclaration
impl Unpin for LegalEntityUboDeclaration
impl UnwindSafe for LegalEntityUboDeclaration
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