pub struct SearchDIDsCANResponseDID {
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>,
}Expand description
Response body for Client::search_dids_can (wire method searchDIDsCAN).
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>Trait Implementations§
Source§impl Clone for SearchDIDsCANResponseDID
impl Clone for SearchDIDsCANResponseDID
Source§fn clone(&self) -> SearchDIDsCANResponseDID
fn clone(&self) -> SearchDIDsCANResponseDID
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 SearchDIDsCANResponseDID
impl Debug for SearchDIDsCANResponseDID
Source§impl Default for SearchDIDsCANResponseDID
impl Default for SearchDIDsCANResponseDID
Source§fn default() -> SearchDIDsCANResponseDID
fn default() -> SearchDIDsCANResponseDID
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchDIDsCANResponseDID
impl<'de> Deserialize<'de> for SearchDIDsCANResponseDID
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 SearchDIDsCANResponseDID
impl RefUnwindSafe for SearchDIDsCANResponseDID
impl Send for SearchDIDsCANResponseDID
impl Sync for SearchDIDsCANResponseDID
impl Unpin for SearchDIDsCANResponseDID
impl UnsafeUnpin for SearchDIDsCANResponseDID
impl UnwindSafe for SearchDIDsCANResponseDID
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