[][src]Struct wynncraft::Guild

pub struct Guild {
    pub name: String,
    pub prefix: String,
    pub members: Vec<Member>,
    pub xp: f64,
    pub level: u64,
    pub created: String,
    pub created_friendly: String,
    pub territories: u64,
}

Fields

name: Stringprefix: Stringmembers: Vec<Member>xp: f64level: u64created: Stringcreated_friendly: Stringterritories: u64

Trait Implementations

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

Auto Trait Implementations

impl RefUnwindSafe for Guild

impl Send for Guild

impl Sync for Guild

impl Unpin for Guild

impl UnwindSafe for Guild

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: Deserialize<'de>, 
[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.