Struct github_rest::model::organizations::nested::ParentTeam
source · pub struct ParentTeam {
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,
}
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
Trait Implementations§
source§impl Clone for ParentTeam
impl Clone for ParentTeam
source§fn clone(&self) -> ParentTeam
fn clone(&self) -> ParentTeam
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 ParentTeam
impl Debug for ParentTeam
source§impl Default for ParentTeam
impl Default for ParentTeam
source§fn default() -> ParentTeam
fn default() -> ParentTeam
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ParentTeam
impl<'de> Deserialize<'de> for ParentTeam
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<ParentTeam> for ParentTeam
impl PartialEq<ParentTeam> for ParentTeam
source§fn eq(&self, other: &ParentTeam) -> bool
fn eq(&self, other: &ParentTeam) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ParentTeam
impl Serialize for ParentTeam
impl StructuralPartialEq for ParentTeam
Auto Trait Implementations§
impl RefUnwindSafe for ParentTeam
impl Send for ParentTeam
impl Sync for ParentTeam
impl Unpin for ParentTeam
impl UnwindSafe for ParentTeam
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