pub struct TlsSubscriptionResponseAttributes {
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub state: Option<State>,
pub has_active_order: Option<bool>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
state: Option<State>
The current state of your subscription.
has_active_order: Option<bool>
Subscription has an active order
Implementations§
Trait Implementations§
Source§impl Clone for TlsSubscriptionResponseAttributes
impl Clone for TlsSubscriptionResponseAttributes
Source§fn clone(&self) -> TlsSubscriptionResponseAttributes
fn clone(&self) -> TlsSubscriptionResponseAttributes
Returns a copy 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 Default for TlsSubscriptionResponseAttributes
impl Default for TlsSubscriptionResponseAttributes
Source§fn default() -> TlsSubscriptionResponseAttributes
fn default() -> TlsSubscriptionResponseAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsSubscriptionResponseAttributes
impl<'de> Deserialize<'de> for TlsSubscriptionResponseAttributes
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 TlsSubscriptionResponseAttributes
impl PartialEq for TlsSubscriptionResponseAttributes
Source§fn eq(&self, other: &TlsSubscriptionResponseAttributes) -> bool
fn eq(&self, other: &TlsSubscriptionResponseAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TlsSubscriptionResponseAttributes
Auto Trait Implementations§
impl Freeze for TlsSubscriptionResponseAttributes
impl RefUnwindSafe for TlsSubscriptionResponseAttributes
impl Send for TlsSubscriptionResponseAttributes
impl Sync for TlsSubscriptionResponseAttributes
impl Unpin for TlsSubscriptionResponseAttributes
impl UnwindSafe for TlsSubscriptionResponseAttributes
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