pub struct KNN<'a> {
pub file_path: String,
pub test_size: f64,
pub target_column: usize,
pub k: usize,
pub method: &'a str,
}Fields§
§file_path: String§test_size: f64§target_column: usize§k: usize§method: &'a strImplementations§
Auto Trait Implementations§
impl<'a> Freeze for KNN<'a>
impl<'a> RefUnwindSafe for KNN<'a>
impl<'a> Send for KNN<'a>
impl<'a> Sync for KNN<'a>
impl<'a> Unpin for KNN<'a>
impl<'a> UnwindSafe for KNN<'a>
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