pub struct TutorialPack {
pub name: String,
pub kind: String,
pub recommended: bool,
}Expand description
Summary line for one pack as shown in the tutorial.
Fields§
§name: String§kind: String§recommended: boolTrait Implementations§
Source§impl Clone for TutorialPack
impl Clone for TutorialPack
Source§fn clone(&self) -> TutorialPack
fn clone(&self) -> TutorialPack
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 TutorialPack
impl Debug for TutorialPack
Auto Trait Implementations§
impl Freeze for TutorialPack
impl RefUnwindSafe for TutorialPack
impl Send for TutorialPack
impl Sync for TutorialPack
impl Unpin for TutorialPack
impl UnsafeUnpin for TutorialPack
impl UnwindSafe for TutorialPack
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