pub struct SimpleUser {Show 19 fields
pub login: String,
pub id: u64,
pub node_id: String,
pub url: String,
pub repos_url: String,
pub events_url: String,
pub avatar_url: String,
pub gravatar_id: Option<String>,
pub html_url: String,
pub followers_url: String,
pub following_url: String,
pub gists_url: String,
pub starred_url: String,
pub subscriptions_url: String,
pub organizations_url: String,
pub received_events_url: String,
pub user_type: String,
pub site_admin: bool,
pub starred_at: Option<String>,
}
Fields§
§login: String
§id: u64
§node_id: String
§url: String
§repos_url: String
§events_url: String
§avatar_url: String
§gravatar_id: Option<String>
§html_url: String
§followers_url: String
§following_url: String
§gists_url: String
§starred_url: String
§subscriptions_url: String
§organizations_url: String
§received_events_url: String
§user_type: String
§site_admin: bool
§starred_at: Option<String>
Trait Implementations§
Source§impl Debug for SimpleUser
impl Debug for SimpleUser
Source§impl<'de> Deserialize<'de> for SimpleUser
impl<'de> Deserialize<'de> for SimpleUser
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 SimpleUser
impl RefUnwindSafe for SimpleUser
impl Send for SimpleUser
impl Sync for SimpleUser
impl Unpin for SimpleUser
impl UnwindSafe for SimpleUser
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