Enum at_commands::Success

source ·
pub enum Success {
Show 35 variants Test {}, Testnod {}, TestResponse {}, Testext {}, Testextnod {}, Testi { field: i64, }, Testinod { field: i64, }, Testic { field: i64, }, Tests { field: String, }, Testsi { field1: String, field2: i64, }, Testsic { field1: String, field2: i64, }, Testio { field1: i64, field2: Option<i64>, }, Testl { field: Vec<i64>, }, Testol { field: Vec<Option<i64>>, }, Testm { field: HashMap<i64, String>, }, Testp { field: i64, }, Testpp { field1: i64, field2: i64, field3: String, }, Testpmpil { field1: HashMap<i64, String>, field2: i64, field3: Vec<i64>, }, SameOne { field: i64, }, SameTwo { field: i64, }, Brsf { features: i64, }, Cind { service: bool, call: bool, callsetup: i64, callheld: i64, signal: i64, roam: bool, battchg: i64, }, Clcc { index: i64, dir: i64, status: i64, mode: i64, mpty: i64, number: String, ty: i64, }, Bcs { codec: i64, }, BindList { indicators: Vec<BluetoothHFIndicator>, }, BindStatus { anum: BluetoothHFIndicator, state: bool, }, Chld { commands: Vec<String>, }, Cops { format: NetworkOperatorNameFormat, zero: i64, operator: String, }, Clip { number: String, ty: i64, }, Cnum { alpha: String, number: String, ty: i64, speed: String, service: i64, }, Vgs { level: i64, }, Vgm { level: i64, }, Ciev { ind: i64, value: i64, }, Ccwa { number: String, ty: i64, }, Ring {},
}

Variants§

§

Test

§

Testnod

§

TestResponse

§

Testext

§

Testextnod

§

Testi

Fields

§field: i64
§

Testinod

Fields

§field: i64
§

Testic

Fields

§field: i64
§

Tests

Fields

§field: String
§

Testsi

Fields

§field1: String
§field2: i64
§

Testsic

Fields

§field1: String
§field2: i64
§

Testio

Fields

§field1: i64
§field2: Option<i64>
§

Testl

Fields

§field: Vec<i64>
§

Testol

Fields

§field: Vec<Option<i64>>
§

Testm

Fields

§

Testp

Fields

§field: i64
§

Testpp

Fields

§field1: i64
§field2: i64
§field3: String
§

Testpmpil

Fields

§field1: HashMap<i64, String>
§field2: i64
§field3: Vec<i64>
§

SameOne

Fields

§field: i64
§

SameTwo

Fields

§field: i64
§

Brsf

Fields

§features: i64
§

Cind

Fields

§service: bool
§call: bool
§callsetup: i64
§callheld: i64
§signal: i64
§roam: bool
§battchg: i64
§

Clcc

Fields

§index: i64
§dir: i64
§status: i64
§mode: i64
§mpty: i64
§number: String
§ty: i64
§

Bcs

Fields

§codec: i64
§

BindList

Fields

§

BindStatus

Fields

§state: bool
§

Chld

Fields

§commands: Vec<String>
§

Cops

Fields

§zero: i64
§operator: String
§

Clip

Fields

§number: String
§ty: i64
§

Cnum

Fields

§alpha: String
§number: String
§ty: i64
§speed: String
§service: i64
§

Vgs

Fields

§level: i64
§

Vgm

Fields

§level: i64
§

Ciev

Fields

§ind: i64
§value: i64
§

Ccwa

Fields

§number: String
§ty: i64
§

Ring

Trait Implementations§

source§

impl Clone for Success

source§

fn clone(&self) -> Success

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Success

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Success

source§

fn eq(&self, other: &Success) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Success

source§

impl StructuralPartialEq for Success

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.