pub struct GetPortabilityResponse {
pub status: Option<String>,
pub portable: Option<bool>,
pub sms: Option<bool>,
pub plans: Option<Vec<GetPortabilityResponsePlan>>,
}Fields§
§status: Option<String>§portable: Option<bool>§sms: Option<bool>§plans: Option<Vec<GetPortabilityResponsePlan>>Trait Implementations§
Source§impl Clone for GetPortabilityResponse
impl Clone for GetPortabilityResponse
Source§fn clone(&self) -> GetPortabilityResponse
fn clone(&self) -> GetPortabilityResponse
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 GetPortabilityResponse
impl Debug for GetPortabilityResponse
Source§impl Default for GetPortabilityResponse
impl Default for GetPortabilityResponse
Source§fn default() -> GetPortabilityResponse
fn default() -> GetPortabilityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPortabilityResponse
impl<'de> Deserialize<'de> for GetPortabilityResponse
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 GetPortabilityResponse
impl RefUnwindSafe for GetPortabilityResponse
impl Send for GetPortabilityResponse
impl Sync for GetPortabilityResponse
impl Unpin for GetPortabilityResponse
impl UnsafeUnpin for GetPortabilityResponse
impl UnwindSafe for GetPortabilityResponse
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