pub struct TenDlcQualifyResult {
pub use_case: String,
pub qualified: bool,
pub reason: Option<String>,
pub throughput: Option<TenDlcThroughput>,
}Expand description
Result of a use-case qualification pre-check.
Fields§
§use_case: StringThe use-case code that was checked (e.g. MIXED, MARKETING).
qualified: boolWhether the use case qualifies for this brand.
reason: Option<String>Why the use case does not qualify, when qualified is false.
throughput: Option<TenDlcThroughput>Expected throughput, when the carrier network reports it.
Trait Implementations§
Source§impl Clone for TenDlcQualifyResult
impl Clone for TenDlcQualifyResult
Source§fn clone(&self) -> TenDlcQualifyResult
fn clone(&self) -> TenDlcQualifyResult
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 TenDlcQualifyResult
impl Debug for TenDlcQualifyResult
Source§impl<'de> Deserialize<'de> for TenDlcQualifyResult
impl<'de> Deserialize<'de> for TenDlcQualifyResult
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 TenDlcQualifyResult
impl RefUnwindSafe for TenDlcQualifyResult
impl Send for TenDlcQualifyResult
impl Sync for TenDlcQualifyResult
impl Unpin for TenDlcQualifyResult
impl UnsafeUnpin for TenDlcQualifyResult
impl UnwindSafe for TenDlcQualifyResult
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