pub struct TeamParent {
pub description: Option<String>,
pub html_url: String,
pub id: i32,
pub members_url: String,
pub name: String,
pub node_id: String,
pub permission: String,
pub privacy: Privacy,
pub repositories_url: String,
pub slug: String,
pub url: String,
}
Fields§
§description: Option<String>
Description of the team
html_url: String
§id: i32
Unique identifier of the team
members_url: String
§name: String
Name of the team
node_id: String
§permission: String
Permission that the team will have for its repositories
privacy: Privacy
§repositories_url: String
§slug: String
§url: String
URL for the team
Implementations§
Trait Implementations§
Source§impl Clone for TeamParent
impl Clone for TeamParent
Source§fn clone(&self) -> TeamParent
fn clone(&self) -> TeamParent
Returns a duplicate 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 TeamParent
impl Debug for TeamParent
Source§impl Default for TeamParent
impl Default for TeamParent
Source§fn default() -> TeamParent
fn default() -> TeamParent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamParent
impl<'de> Deserialize<'de> for TeamParent
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 for TeamParent
impl PartialEq for TeamParent
Source§impl Serialize for TeamParent
impl Serialize for TeamParent
impl StructuralPartialEq for TeamParent
Auto Trait Implementations§
impl Freeze for TeamParent
impl RefUnwindSafe for TeamParent
impl Send for TeamParent
impl Sync for TeamParent
impl Unpin for TeamParent
impl UnwindSafe for TeamParent
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