pub struct RosterEntry {
pub person: FullPlayer,
pub jersey_number: Option<String>,
pub position: PrimaryPosition,
pub status: RosterStatus,
pub parent_team_id: Option<u16>,
}Fields§
§person: FullPlayer§jersey_number: Option<String>§position: PrimaryPosition§status: RosterStatus§parent_team_id: Option<u16>Trait Implementations§
Source§impl Debug for RosterEntry
impl Debug for RosterEntry
Source§impl<'de> Deserialize<'de> for RosterEntry
impl<'de> Deserialize<'de> for RosterEntry
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 RosterEntry
impl RefUnwindSafe for RosterEntry
impl Send for RosterEntry
impl Sync for RosterEntry
impl Unpin for RosterEntry
impl UnsafeUnpin for RosterEntry
impl UnwindSafe for RosterEntry
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