pub struct SupportingFile {
pub name: String,
pub path: PathBuf,
pub file_type: SupportingFileType,
}Expand description
A supporting file in the skill directory.
Fields§
§name: StringFile name.
path: PathBufFull path to the file.
file_type: SupportingFileTypeClassification of the file.
Trait Implementations§
Source§impl Clone for SupportingFile
impl Clone for SupportingFile
Source§fn clone(&self) -> SupportingFile
fn clone(&self) -> SupportingFile
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 SupportingFile
impl Debug for SupportingFile
Source§impl PartialEq for SupportingFile
impl PartialEq for SupportingFile
impl StructuralPartialEq for SupportingFile
Auto Trait Implementations§
impl Freeze for SupportingFile
impl RefUnwindSafe for SupportingFile
impl Send for SupportingFile
impl Sync for SupportingFile
impl Unpin for SupportingFile
impl UnsafeUnpin for SupportingFile
impl UnwindSafe for SupportingFile
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