pub struct Team {
pub id: i32,
pub name: Option<String>,
pub short_name: Option<String>,
pub icon_url: Option<String>,
pub group: Option<String>,
}
Expand description
A data structure representing a team
Fields§
§id: i32
The identifier of the team data
name: Option<String>
The full proper name of the team
short_name: Option<String>
A short, familiar name for the team
icon_url: Option<String>
A URL for the team’s logo or icon
group: Option<String>
The group name for the team
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Team
impl<'de> Deserialize<'de> for Team
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 Team
impl RefUnwindSafe for Team
impl Send for Team
impl Sync for Team
impl Unpin for Team
impl UnwindSafe for Team
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