pub struct ColumnDetectionAlgorithm {
pub name: String,
pub algorithm_type: ColumnAlgorithmType,
pub parameters: HashMap<String, f32>,
}Expand description
Column detection algorithms
Fields§
§name: StringAlgorithm name
algorithm_type: ColumnAlgorithmTypeAlgorithm type
parameters: HashMap<String, f32>Parameters
Trait Implementations§
Source§impl Clone for ColumnDetectionAlgorithm
impl Clone for ColumnDetectionAlgorithm
Source§fn clone(&self) -> ColumnDetectionAlgorithm
fn clone(&self) -> ColumnDetectionAlgorithm
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 ColumnDetectionAlgorithm
impl RefUnwindSafe for ColumnDetectionAlgorithm
impl Send for ColumnDetectionAlgorithm
impl Sync for ColumnDetectionAlgorithm
impl Unpin for ColumnDetectionAlgorithm
impl UnwindSafe for ColumnDetectionAlgorithm
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