Enum steamidfx::id::AccountType[][src]

pub enum AccountType {
    Individual,
    Multiseat,
    GameServer,
    AnonymousGameServer,
    Pending,
    ContentServer,
    Clan,
    Chat,
    PeerToPeerSuperSeeder,
    AnonymousUser,
    Invalid,
}

Steam Id Account type.

Variants

Individual

The account is of an individual.

Multiseat

The account is of a multiseat type.

GameServer

The account is of a game server (registered in steam).

AnonymousGameServer

The account is of a game server (unregistered in steam).

Pending

The account is pending approval from Valve.

ContentServer

The account is of a content server.

Clan

The account is of a clan.

Chat

The chat account.

PeerToPeerSuperSeeder

The P2P seeder account.

AnonymousUser

The anonymous user account.

Invalid

An invalid account type.

Trait Implementations

impl Clone for AccountType[src]

impl Copy for AccountType[src]

impl Debug for AccountType[src]

impl<'de> Deserialize<'de> for AccountType[src]

impl Display for AccountType[src]

impl Eq for AccountType[src]

impl FromStr for AccountType[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for AccountType[src]

impl Ord for AccountType[src]

impl PartialEq<AccountType> for AccountType[src]

impl PartialOrd<AccountType> for AccountType[src]

impl Serialize for AccountType[src]

impl StructuralEq for AccountType[src]

impl StructuralPartialEq for AccountType[src]

impl TryFrom<char> for AccountType[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<u16> for AccountType[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<u32> for AccountType[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<u64> for AccountType[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<u8> for AccountType[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.