pub struct Deck {
pub main: Vec<u32>,
pub extra: Vec<u32>,
pub side: Vec<u32>,
}Expand description
Represents a YGOPro deck with main deck, extra deck, and side deck.
Fields§
§main: Vec<u32>§extra: Vec<u32>§side: Vec<u32>Trait Implementations§
impl StructuralPartialEq for Deck
Auto Trait Implementations§
impl Freeze for Deck
impl RefUnwindSafe for Deck
impl Send for Deck
impl Sync for Deck
impl Unpin for Deck
impl UnwindSafe for Deck
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