pub struct TeamSummary {
pub id: i64,
pub name: String,
pub members_count: Option<i64>,
pub users: Vec<TeamUser>,
}Expand description
Summary representation of a team in list responses.
Fields§
§id: i64Team identifier.
name: StringTeam name.
members_count: Option<i64>Current member count.
users: Vec<TeamUser>Active team members.
Trait Implementations§
Source§impl Clone for TeamSummary
impl Clone for TeamSummary
Source§fn clone(&self) -> TeamSummary
fn clone(&self) -> TeamSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TeamSummary
impl Debug for TeamSummary
Source§impl<'de> Deserialize<'de> for TeamSummary
impl<'de> Deserialize<'de> for TeamSummary
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 TeamSummary
impl RefUnwindSafe for TeamSummary
impl Send for TeamSummary
impl Sync for TeamSummary
impl Unpin for TeamSummary
impl UnsafeUnpin for TeamSummary
impl UnwindSafe for TeamSummary
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