pub struct Org {
pub id: Option<i64>,
pub login: Option<String>,
pub gravatar_id: Option<String>,
pub avatar_url: String,
pub url: String,
}Fields§
§id: Option<i64>§login: Option<String>§gravatar_id: Option<String>§avatar_url: String§url: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Org
impl<'de> Deserialize<'de> for Org
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 Org
impl RefUnwindSafe for Org
impl Send for Org
impl Sync for Org
impl Unpin for Org
impl UnwindSafe for Org
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