pub struct Organisation {
pub id: u64,
pub login: String,
pub gravatar_id: String,
pub avatar_url: String,
pub url: String,
}
Expand description
Organisation
contains all info on the organisation related to the event.
Fields§
§id: u64
§login: String
§gravatar_id: String
§avatar_url: String
§url: String
Trait Implementations§
Source§impl Debug for Organisation
impl Debug for Organisation
Auto Trait Implementations§
impl Freeze for Organisation
impl RefUnwindSafe for Organisation
impl Send for Organisation
impl Sync for Organisation
impl Unpin for Organisation
impl UnwindSafe for Organisation
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