pub struct DraftInfo {
pub pick_round: String,
pub pick_number: u16,
pub round_pick_number: u8,
pub team: IdNameLink,
pub is_drafted: bool,
pub is_pass: bool,
pub year: String,
}Fields§
§pick_round: String§pick_number: u16§round_pick_number: u8§team: IdNameLink§is_drafted: bool§is_pass: bool§year: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for DraftInfo
impl<'de> Deserialize<'de> for DraftInfo
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 DraftInfo
impl RefUnwindSafe for DraftInfo
impl Send for DraftInfo
impl Sync for DraftInfo
impl Unpin for DraftInfo
impl UnsafeUnpin for DraftInfo
impl UnwindSafe for DraftInfo
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