[][src]Struct hubcaps::gists::Gist

pub struct Gist {
    pub url: String,
    pub forks_url: String,
    pub commits_url: String,
    pub id: String,
    pub description: Option<String>,
    pub public: bool,
    pub owner: Option<User>,
    pub user: Option<User>,
    pub files: HashMap<String, GistFile>,
    pub truncated: bool,
    pub comments: u64,
    pub comments_url: String,
    pub html_url: String,
    pub git_pull_url: String,
    pub git_push_url: String,
    pub created_at: String,
    pub updated_at: String,
}

Fields

url: Stringforks_url: Stringcommits_url: Stringid: Stringdescription: Option<String>public: boolowner: Option<User>user: Option<User>files: HashMap<String, GistFile>truncated: boolcomments: u64comments_url: Stringhtml_url: Stringgit_pull_url: Stringgit_push_url: Stringcreated_at: Stringupdated_at: String

Trait Implementations

impl Debug for Gist[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Gist

impl Send for Gist

impl Sync for Gist

impl Unpin for Gist

impl UnwindSafe for Gist

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.