pub struct SkillFileEntry {
pub path: String,
pub content: String,
}Expand description
A file entry in a skill archive
Fields§
§path: String§content: StringTrait Implementations§
Source§impl Clone for SkillFileEntry
impl Clone for SkillFileEntry
Source§fn clone(&self) -> SkillFileEntry
fn clone(&self) -> SkillFileEntry
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 SkillFileEntry
impl Debug for SkillFileEntry
Source§impl<'de> Deserialize<'de> for SkillFileEntry
impl<'de> Deserialize<'de> for SkillFileEntry
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 SkillFileEntry
impl RefUnwindSafe for SkillFileEntry
impl Send for SkillFileEntry
impl Sync for SkillFileEntry
impl Unpin for SkillFileEntry
impl UnsafeUnpin for SkillFileEntry
impl UnwindSafe for SkillFileEntry
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