pub struct FileClassification {
pub path: PathBuf,
pub categories: Vec<String>,
pub confidence: Option<f32>,
}Expand description
ファイルの分類結果
Fields§
§path: PathBufファイルパス(Profile相対)
categories: Vec<String>所属カテゴリ(複数可、priority順)
confidence: Option<f32>分類の確信度(LLMモード時のみ有効、0.0-1.0)
Trait Implementations§
Source§impl Clone for FileClassification
impl Clone for FileClassification
Source§fn clone(&self) -> FileClassification
fn clone(&self) -> FileClassification
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 FileClassification
impl RefUnwindSafe for FileClassification
impl Send for FileClassification
impl Sync for FileClassification
impl Unpin for FileClassification
impl UnwindSafe for FileClassification
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