pub struct PostEconsentSchema {
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 PostEconsentSchema
impl Debug for PostEconsentSchema
Source§impl<'de> Deserialize<'de> for PostEconsentSchema
impl<'de> Deserialize<'de> for PostEconsentSchema
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 PostEconsentSchema
impl Display for PostEconsentSchema
Auto Trait Implementations§
impl Freeze for PostEconsentSchema
impl RefUnwindSafe for PostEconsentSchema
impl Send for PostEconsentSchema
impl Sync for PostEconsentSchema
impl Unpin for PostEconsentSchema
impl UnwindSafe for PostEconsentSchema
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