pub struct LearningTip {
pub title: String,
pub content: String,
pub category: TipCategory,
}Expand description
Educational tip or insight
Fields§
§title: String§content: String§category: TipCategoryTrait Implementations§
Source§impl Clone for LearningTip
impl Clone for LearningTip
Source§fn clone(&self) -> LearningTip
fn clone(&self) -> LearningTip
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 LearningTip
impl Debug for LearningTip
Source§impl<'de> Deserialize<'de> for LearningTip
impl<'de> Deserialize<'de> for LearningTip
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
Auto Trait Implementations§
impl Freeze for LearningTip
impl RefUnwindSafe for LearningTip
impl Send for LearningTip
impl Sync for LearningTip
impl Unpin for LearningTip
impl UnwindSafe for LearningTip
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