Struct github_rest::model::organizations::SimpleTeam
source · pub struct SimpleTeam {
pub id: usize,
pub node_id: String,
pub url: String,
pub members_url: String,
pub name: String,
pub description: Option<String>,
pub permission: String,
pub html_url: String,
pub repositories_url: String,
pub slug: String,
pub parent: Option<ParentTeam>,
}
Expand description
Fields§
§id: usize
§node_id: String
§url: String
§members_url: String
§name: String
§description: Option<String>
§permission: String
§html_url: String
§repositories_url: String
§slug: String
§parent: Option<ParentTeam>
Trait Implementations§
source§impl AsRef<SimpleTeam> for Team
impl AsRef<SimpleTeam> for Team
source§fn as_ref(&self) -> &SimpleTeam
fn as_ref(&self) -> &SimpleTeam
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for SimpleTeam
impl Clone for SimpleTeam
source§fn clone(&self) -> SimpleTeam
fn clone(&self) -> SimpleTeam
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SimpleTeam
impl Debug for SimpleTeam
source§impl Default for SimpleTeam
impl Default for SimpleTeam
source§fn default() -> SimpleTeam
fn default() -> SimpleTeam
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SimpleTeam
impl<'de> Deserialize<'de> for SimpleTeam
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
source§impl PartialEq<SimpleTeam> for SimpleTeam
impl PartialEq<SimpleTeam> for SimpleTeam
source§fn eq(&self, other: &SimpleTeam) -> bool
fn eq(&self, other: &SimpleTeam) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SimpleTeam
impl Serialize for SimpleTeam
impl StructuralPartialEq for SimpleTeam
Auto Trait Implementations§
impl RefUnwindSafe for SimpleTeam
impl Send for SimpleTeam
impl Sync for SimpleTeam
impl Unpin for SimpleTeam
impl UnwindSafe for SimpleTeam
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