pub struct VocabularyCard {
pub word: String,
pub translation: String,
pub example: Option<String>,
pub status: LearningStatus,
}Fields§
§word: String§translation: String§example: Option<String>§status: LearningStatusTrait Implementations§
Source§impl Clone for VocabularyCard
impl Clone for VocabularyCard
Source§fn clone(&self) -> VocabularyCard
fn clone(&self) -> VocabularyCard
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VocabularyCard
impl Debug for VocabularyCard
Source§impl<'de> Deserialize<'de> for VocabularyCard
impl<'de> Deserialize<'de> for VocabularyCard
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 From<Card> for VocabularyCard
impl From<Card> for VocabularyCard
Source§impl From<VocabularyCard> for VocabularyNote
impl From<VocabularyCard> for VocabularyNote
Source§fn from(card: VocabularyCard) -> Self
fn from(card: VocabularyCard) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VocabularyCard
impl RefUnwindSafe for VocabularyCard
impl Send for VocabularyCard
impl Sync for VocabularyCard
impl Unpin for VocabularyCard
impl UnsafeUnpin for VocabularyCard
impl UnwindSafe for VocabularyCard
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