pub struct LocalSkill {
pub description: String,
pub name: String,
pub path: String,
}Fields§
§description: StringThe description of the skill.
name: StringThe name of the skill.
path: StringThe path to the directory containing the skill.
Trait Implementations§
Source§impl Clone for LocalSkill
impl Clone for LocalSkill
Source§fn clone(&self) -> LocalSkill
fn clone(&self) -> LocalSkill
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 LocalSkill
impl Debug for LocalSkill
Source§impl<'de> Deserialize<'de> for LocalSkill
impl<'de> Deserialize<'de> for LocalSkill
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 LocalSkill
impl RefUnwindSafe for LocalSkill
impl Send for LocalSkill
impl Sync for LocalSkill
impl Unpin for LocalSkill
impl UnsafeUnpin for LocalSkill
impl UnwindSafe for LocalSkill
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