pub struct ActiveAccount {
pub account_id: Option<String>,
pub carrier_id: Option<String>,
}Expand description
ActiveAccount : Active Account Details
Fields§
§account_id: Option<String>Identifier for the seller’s carrier account.
carrier_id: Option<String>The carrier identifier for the offering, provided by the carrier.
Implementations§
Source§impl ActiveAccount
impl ActiveAccount
Sourcepub fn new() -> ActiveAccount
pub fn new() -> ActiveAccount
Active Account Details
Trait Implementations§
Source§impl Clone for ActiveAccount
impl Clone for ActiveAccount
Source§fn clone(&self) -> ActiveAccount
fn clone(&self) -> ActiveAccount
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 ActiveAccount
impl Debug for ActiveAccount
Source§impl Default for ActiveAccount
impl Default for ActiveAccount
Source§fn default() -> ActiveAccount
fn default() -> ActiveAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActiveAccount
impl<'de> Deserialize<'de> for ActiveAccount
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 ActiveAccount
impl PartialEq for ActiveAccount
Source§impl Serialize for ActiveAccount
impl Serialize for ActiveAccount
impl StructuralPartialEq for ActiveAccount
Auto Trait Implementations§
impl Freeze for ActiveAccount
impl RefUnwindSafe for ActiveAccount
impl Send for ActiveAccount
impl Sync for ActiveAccount
impl Unpin for ActiveAccount
impl UnsafeUnpin for ActiveAccount
impl UnwindSafe for ActiveAccount
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