pub struct AwardRecipient {
pub team_key: Option<String>,
pub awardee: Option<String>,
}
Expand description
AwardRecipient : An Award_Recipient
object represents the team and/or person who received an award at an event.
Fields§
§team_key: Option<String>
The TBA team key for the team that was given the award. May be null.
awardee: Option<String>
The name of the individual given the award. May be null.
Implementations§
Source§impl AwardRecipient
impl AwardRecipient
Sourcepub fn new() -> AwardRecipient
pub fn new() -> AwardRecipient
An Award_Recipient
object represents the team and/or person who received an award at an event.
Trait Implementations§
Source§impl Clone for AwardRecipient
impl Clone for AwardRecipient
Source§fn clone(&self) -> AwardRecipient
fn clone(&self) -> AwardRecipient
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AwardRecipient
impl Debug for AwardRecipient
Source§impl Default for AwardRecipient
impl Default for AwardRecipient
Source§fn default() -> AwardRecipient
fn default() -> AwardRecipient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwardRecipient
impl<'de> Deserialize<'de> for AwardRecipient
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
Source§impl PartialEq for AwardRecipient
impl PartialEq for AwardRecipient
Source§impl Serialize for AwardRecipient
impl Serialize for AwardRecipient
impl StructuralPartialEq for AwardRecipient
Auto Trait Implementations§
impl Freeze for AwardRecipient
impl RefUnwindSafe for AwardRecipient
impl Send for AwardRecipient
impl Sync for AwardRecipient
impl Unpin for AwardRecipient
impl UnwindSafe for AwardRecipient
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