pub struct DeckConfig {
pub id: u64,
pub name: String,
pub reuse_if_possible: bool,
pub disable_auto_qe: bool,
}
Expand description
Represents deck configuration options
Fields§
§id: u64
§name: String
§reuse_if_possible: bool
§disable_auto_qe: bool
Trait Implementations§
Source§impl Clone for DeckConfig
impl Clone for DeckConfig
Source§fn clone(&self) -> DeckConfig
fn clone(&self) -> DeckConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeckConfig
impl Debug for DeckConfig
Source§impl From<DeckConfigDto> for DeckConfig
impl From<DeckConfigDto> for DeckConfig
Source§fn from(dto: DeckConfigDto) -> Self
fn from(dto: DeckConfigDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeckConfig
impl RefUnwindSafe for DeckConfig
impl Send for DeckConfig
impl Sync for DeckConfig
impl Unpin for DeckConfig
impl UnwindSafe for DeckConfig
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