Struct rbxapi::Game[][src]

pub struct Game {
    pub universe_id: u64,
    pub place_id: u64,
    pub name: String,
    pub description: String,
    pub price: Option<u64>,
    pub allowed_gear_genres: Vec<String>,
    pub allowed_gear_categories: Vec<String>,
    pub playing: u32,
    pub visits: u64,
    pub max_players: u8,
    pub created: String,
    pub updated: String,
    pub studio_access_to_apis_allowed: bool,
    pub create_vip_servers_allowed: bool,
    pub universe_avatar_type: String,
    pub genre: String,
    // some fields omitted
}

Fields

universe_id: u64place_id: u64name: Stringdescription: Stringprice: Option<u64>allowed_gear_genres: Vec<String>allowed_gear_categories: Vec<String>playing: u32visits: u64max_players: u8created: Stringupdated: Stringstudio_access_to_apis_allowed: boolcreate_vip_servers_allowed: booluniverse_avatar_type: Stringgenre: String

Implementations

impl Game[src]

pub async fn servers(&mut self) -> Vec<Server>[src]

Trait Implementations

impl Clone for Game[src]

impl Debug for Game[src]

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

impl Display for Game[src]

impl Serialize for Game[src]

Auto Trait Implementations

impl !RefUnwindSafe for Game

impl Send for Game

impl Sync for Game

impl Unpin for Game

impl !UnwindSafe for Game

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> Instrument for T[src]

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,