Enum sbd::mo::SessionStatus [] [src]

pub enum SessionStatus {
    Ok,
    OkMobileTerminatedTooLarge,
    OkLocationUnacceptableQuality,
    Timeout,
    MobileOriginatedTooLarge,
    RFLinkLoss,
    IMEIProtocolAnomaly,
    Prohibited,
    Unknown,
}

The status of a mobile-originated session.

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

Variants

The SBD session completed successfully.

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.

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.

The SBD session timed out before session completion.

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

An RF link loss ocurred during the SBD session.

An IMEI protocol anomaly occurred during SBD session.

The IMEI is prohibited from accessing the GSS.

Unknown session status code.

Trait Implementations

impl Copy for SessionStatus
[src]

impl Clone for SessionStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SessionStatus
[src]

Formats the value using the given formatter.

impl Eq for SessionStatus
[src]

impl PartialEq for SessionStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Encodable for SessionStatus
[src]

Serialize a value using an Encoder.

impl Default for SessionStatus
[src]

Returns the "default value" for a type. Read more

impl From<u8> for SessionStatus
[src]

Performs the conversion.