[][src]Struct chocomint::structs::player::Player

pub struct Player {
    pub id: String,
    // some fields omitted
}

Fields

id: String

Implementations

impl Player[src]

pub fn new(ro_id: &dyn RobloxId, mint: Mint) -> Player[src]

pub fn username(&mut self) -> BloxResult<String>[src]

Returns the player's name from cache Makes an HTTP request if it cannot be found

Auto Trait Implementations

impl !RefUnwindSafe for Player

impl Send for Player

impl Sync for Player

impl Unpin for Player

impl !UnwindSafe for Player

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,