Enum SessionStatus

Source
pub enum SessionStatus {
    Ok = 0,
    OkMobileTerminatedTooLarge = 1,
    OkLocationUnacceptableQuality = 2,
    Timeout = 10,
    MobileOriginatedTooLarge = 12,
    RFLinkLoss = 13,
    IMEIProtocolAnomaly = 14,
    Prohibited = 15,
}
Expand description

The status of a mobile-originated session.

The descriptions for these codes are taken directly from the DirectIP documentation.

Variants§

§

Ok = 0

The SBD session completed successfully.

§

OkMobileTerminatedTooLarge = 1

The MO message transfer, if any, was successful. The MT message queued at the GSS is too large to be transferred within a single SBD session.

§

OkLocationUnacceptableQuality = 2

The MO message transfer, if any, was successful. The reported location was determined to be of unacceptable quality. This value is only applicable to IMEIs using SBD protocol revision 1.

§

Timeout = 10

The SBD session timed out before session completion.

§

MobileOriginatedTooLarge = 12

The MO message being transferred by the IMEI is too large to be transerred within a single SBD session.

§

RFLinkLoss = 13

An RF link loss ocurred during the SBD session.

§

IMEIProtocolAnomaly = 14

An IMEI protocol anomaly occurred during SBD session.

§

Prohibited = 15

The IMEI is prohibited from accessing the GSS.

Implementations§

Source§

impl SessionStatus

Source

pub fn new(n: u8) -> Result<SessionStatus>

Creates a new session status from a code.

Returns an error if the code is unknown.

§Examples
use sbd_lib::mo::SessionStatus;
assert!(SessionStatus::new(0).is_ok());
assert!(SessionStatus::new(3).is_err());
Source

pub fn value(&self) -> i8

Source

pub fn is_ok(&self) -> bool

Trait Implementations§

Source§

impl Clone for SessionStatus

Source§

fn clone(&self) -> SessionStatus

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 SessionStatus

Source§

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

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

impl PartialEq for SessionStatus

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for SessionStatus

Source§

impl Eq for SessionStatus

Source§

impl StructuralPartialEq for SessionStatus

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.