pub struct GithubInfo {
pub id: i64,
pub login: String,
pub name: String,
pub avatar_url: String,
pub html_url: String,
pub email: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§login: String§name: String§avatar_url: String§html_url: String§email: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Debug for GithubInfo
impl Debug for GithubInfo
Source§impl<'de> Deserialize<'de> for GithubInfo
impl<'de> Deserialize<'de> for GithubInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GithubInfo
impl RefUnwindSafe for GithubInfo
impl Send for GithubInfo
impl Sync for GithubInfo
impl Unpin for GithubInfo
impl UnwindSafe for GithubInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more