pub struct DeckExport {
pub deck_name: String,
pub notes: Vec<ExportedNote>,
pub cards: Vec<ExportedCard>,
}Expand description
Export of deck contents.
Fields§
§deck_name: StringDeck name.
notes: Vec<ExportedNote>All notes in the deck.
cards: Vec<ExportedCard>All cards in the deck.
Trait Implementations§
Source§impl Clone for DeckExport
impl Clone for DeckExport
Source§fn clone(&self) -> DeckExport
fn clone(&self) -> DeckExport
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 DeckExport
impl Debug for DeckExport
Auto Trait Implementations§
impl Freeze for DeckExport
impl RefUnwindSafe for DeckExport
impl Send for DeckExport
impl Sync for DeckExport
impl Unpin for DeckExport
impl UnwindSafe for DeckExport
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