pub struct ParsedSkill {
pub name: String,
pub description: String,
pub tags: Vec<String>,
pub body: String,
}Fields§
§name: String§description: String§body: StringTrait Implementations§
Source§impl Clone for ParsedSkill
impl Clone for ParsedSkill
Source§fn clone(&self) -> ParsedSkill
fn clone(&self) -> ParsedSkill
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 moreAuto Trait Implementations§
impl Freeze for ParsedSkill
impl RefUnwindSafe for ParsedSkill
impl Send for ParsedSkill
impl Sync for ParsedSkill
impl Unpin for ParsedSkill
impl UnsafeUnpin for ParsedSkill
impl UnwindSafe for ParsedSkill
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