pub struct LendingPostEconsentSchema {
pub status: String,
pub date: Option<String>,
pub ip: Option<String>,
}
Fields§
§status: String
State of econsent
date: Option<String>
UTC Timestamp of when Econsent was given. Optional. Null is accepted.
ip: Option<String>
IP Address from which econsent was given. Optional. Null is accepted.
Trait Implementations§
Source§impl Debug for LendingPostEconsentSchema
impl Debug for LendingPostEconsentSchema
Source§impl<'de> Deserialize<'de> for LendingPostEconsentSchema
impl<'de> Deserialize<'de> for LendingPostEconsentSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LendingPostEconsentSchema
impl Display for LendingPostEconsentSchema
Auto Trait Implementations§
impl Freeze for LendingPostEconsentSchema
impl RefUnwindSafe for LendingPostEconsentSchema
impl Send for LendingPostEconsentSchema
impl Sync for LendingPostEconsentSchema
impl Unpin for LendingPostEconsentSchema
impl UnwindSafe for LendingPostEconsentSchema
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