pub struct CarrierBillingConfig {
pub id: Option<String>,
pub name: Option<String>,
pub api_version: Option<i32>,
pub provisioning_url: Option<String>,
pub credentials_url: Option<String>,
pub tos_required: Option<bool>,
pub per_transaction_credentials_required: Option<bool>,
pub send_subscriber_id_with_carrier_billing_requests: Option<bool>,
}Fields§
§id: Option<String>§name: Option<String>§api_version: Option<i32>§provisioning_url: Option<String>§credentials_url: Option<String>§tos_required: Option<bool>§per_transaction_credentials_required: Option<bool>§send_subscriber_id_with_carrier_billing_requests: Option<bool>Implementations§
Source§impl CarrierBillingConfig
impl CarrierBillingConfig
Sourcepub fn api_version(&self) -> i32
pub fn api_version(&self) -> i32
Returns the value of api_version, or the default value if api_version is unset.
Sourcepub fn provisioning_url(&self) -> &str
pub fn provisioning_url(&self) -> &str
Returns the value of provisioning_url, or the default value if provisioning_url is unset.
Sourcepub fn credentials_url(&self) -> &str
pub fn credentials_url(&self) -> &str
Returns the value of credentials_url, or the default value if credentials_url is unset.
Sourcepub fn tos_required(&self) -> bool
pub fn tos_required(&self) -> bool
Returns the value of tos_required, or the default value if tos_required is unset.
Sourcepub fn per_transaction_credentials_required(&self) -> bool
pub fn per_transaction_credentials_required(&self) -> bool
Returns the value of per_transaction_credentials_required, or the default value if per_transaction_credentials_required is unset.
Sourcepub fn send_subscriber_id_with_carrier_billing_requests(&self) -> bool
pub fn send_subscriber_id_with_carrier_billing_requests(&self) -> bool
Returns the value of send_subscriber_id_with_carrier_billing_requests, or the default value if send_subscriber_id_with_carrier_billing_requests is unset.
Trait Implementations§
Source§impl Clone for CarrierBillingConfig
impl Clone for CarrierBillingConfig
Source§fn clone(&self) -> CarrierBillingConfig
fn clone(&self) -> CarrierBillingConfig
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 CarrierBillingConfig
impl Debug for CarrierBillingConfig
Source§impl Default for CarrierBillingConfig
impl Default for CarrierBillingConfig
Source§impl Message for CarrierBillingConfig
impl Message for CarrierBillingConfig
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for CarrierBillingConfig
impl PartialEq for CarrierBillingConfig
impl StructuralPartialEq for CarrierBillingConfig
Auto Trait Implementations§
impl Freeze for CarrierBillingConfig
impl RefUnwindSafe for CarrierBillingConfig
impl Send for CarrierBillingConfig
impl Sync for CarrierBillingConfig
impl Unpin for CarrierBillingConfig
impl UnwindSafe for CarrierBillingConfig
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