pub struct TeamList {
pub total: i64,
pub teams: Vec<Team>,
}Expand description
Teams List
Fields§
§total: i64Total number of teams that matched your query.
teams: Vec<Team>List of teams.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TeamList
impl<'de> Deserialize<'de> for TeamList
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
impl Model for TeamList
Auto Trait Implementations§
impl Freeze for TeamList
impl RefUnwindSafe for TeamList
impl Send for TeamList
impl Sync for TeamList
impl Unpin for TeamList
impl UnsafeUnpin for TeamList
impl UnwindSafe for TeamList
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