[][src]Struct hubcaps::organizations::Org

pub struct Org {
    pub login: String,
    pub id: u64,
    pub url: String,
    pub repos_url: String,
    pub events_url: String,
    pub hooks_url: String,
    pub issues_url: String,
    pub members_url: String,
    pub public_members_url: String,
    pub avatar_url: String,
    pub description: Option<String>,
}

Fields

login: Stringid: u64url: Stringrepos_url: Stringevents_url: Stringhooks_url: Stringissues_url: Stringmembers_url: Stringpublic_members_url: Stringavatar_url: Stringdescription: Option<String>

Trait Implementations

impl Debug for Org[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Org

impl Send for Org

impl Sync for Org

impl Unpin for Org

impl UnwindSafe for Org

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, 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.