pub struct MatchSimpleAlliances {
pub red: Option<Box<MatchAlliance>>,
pub blue: Option<Box<MatchAlliance>>,
}
Expand description
MatchSimpleAlliances : A list of alliances, the teams on the alliances, and their score.
Fields§
§red: Option<Box<MatchAlliance>>
§blue: Option<Box<MatchAlliance>>
Implementations§
Source§impl MatchSimpleAlliances
impl MatchSimpleAlliances
Sourcepub fn new() -> MatchSimpleAlliances
pub fn new() -> MatchSimpleAlliances
A list of alliances, the teams on the alliances, and their score.
Trait Implementations§
Source§impl Clone for MatchSimpleAlliances
impl Clone for MatchSimpleAlliances
Source§fn clone(&self) -> MatchSimpleAlliances
fn clone(&self) -> MatchSimpleAlliances
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 MatchSimpleAlliances
impl Debug for MatchSimpleAlliances
Source§impl Default for MatchSimpleAlliances
impl Default for MatchSimpleAlliances
Source§fn default() -> MatchSimpleAlliances
fn default() -> MatchSimpleAlliances
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchSimpleAlliances
impl<'de> Deserialize<'de> for MatchSimpleAlliances
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 MatchSimpleAlliances
impl PartialEq for MatchSimpleAlliances
Source§impl Serialize for MatchSimpleAlliances
impl Serialize for MatchSimpleAlliances
impl StructuralPartialEq for MatchSimpleAlliances
Auto Trait Implementations§
impl Freeze for MatchSimpleAlliances
impl RefUnwindSafe for MatchSimpleAlliances
impl Send for MatchSimpleAlliances
impl Sync for MatchSimpleAlliances
impl Unpin for MatchSimpleAlliances
impl UnwindSafe for MatchSimpleAlliances
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