pub struct SecurityCode {
pub security_code: String,
pub verified_at: UtcTime,
pub undocumented: HashMap<String, JsonObject>,
}Fields§
§security_code: String§verified_at: UtcTime§undocumented: HashMap<String, JsonObject>Trait Implementations§
Source§impl Clone for SecurityCode
impl Clone for SecurityCode
Source§fn clone(&self) -> SecurityCode
fn clone(&self) -> SecurityCode
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 SecurityCode
impl Debug for SecurityCode
Source§impl<'de> Deserialize<'de> for SecurityCode
impl<'de> Deserialize<'de> for SecurityCode
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 PartialEq for SecurityCode
impl PartialEq for SecurityCode
Source§impl Serialize for SecurityCode
impl Serialize for SecurityCode
impl StructuralPartialEq for SecurityCode
Auto Trait Implementations§
impl Freeze for SecurityCode
impl RefUnwindSafe for SecurityCode
impl Send for SecurityCode
impl Sync for SecurityCode
impl Unpin for SecurityCode
impl UnwindSafe for SecurityCode
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