pub struct GetDIDsCANResponseDID {
pub did: Option<u64>,
pub ratecenter: Option<String>,
pub province: Option<String>,
pub province_description: Option<String>,
pub perminute_monthly: Option<Decimal>,
pub perminute_minute: Option<Decimal>,
pub perminute_setup: Option<Decimal>,
pub flat_monthly: Option<Decimal>,
pub flat_minute: Option<Decimal>,
pub flat_setup: Option<Decimal>,
pub sms: Option<u64>,
}Expand description
Response body for Client::get_dids_can (wire method getDIDsCAN).
Fields§
§did: Option<u64>§ratecenter: Option<String>§province: Option<String>§province_description: Option<String>§perminute_monthly: Option<Decimal>§perminute_minute: Option<Decimal>§perminute_setup: Option<Decimal>§flat_monthly: Option<Decimal>§flat_minute: Option<Decimal>§flat_setup: Option<Decimal>§sms: Option<u64>Trait Implementations§
Source§impl Clone for GetDIDsCANResponseDID
impl Clone for GetDIDsCANResponseDID
Source§fn clone(&self) -> GetDIDsCANResponseDID
fn clone(&self) -> GetDIDsCANResponseDID
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetDIDsCANResponseDID
impl Debug for GetDIDsCANResponseDID
Source§impl Default for GetDIDsCANResponseDID
impl Default for GetDIDsCANResponseDID
Source§fn default() -> GetDIDsCANResponseDID
fn default() -> GetDIDsCANResponseDID
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetDIDsCANResponseDID
impl<'de> Deserialize<'de> for GetDIDsCANResponseDID
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
Auto Trait Implementations§
impl Freeze for GetDIDsCANResponseDID
impl RefUnwindSafe for GetDIDsCANResponseDID
impl Send for GetDIDsCANResponseDID
impl Sync for GetDIDsCANResponseDID
impl Unpin for GetDIDsCANResponseDID
impl UnsafeUnpin for GetDIDsCANResponseDID
impl UnwindSafe for GetDIDsCANResponseDID
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