pub enum EncodingMethod {
Direct,
Phase,
Amplitude,
Binary,
Fourier,
}Expand description
Encoding method for time series input.
Variants§
Direct
Direct input (no transformation).
Phase
Phase encoding (map to angles).
Amplitude
Amplitude encoding (map to amplitudes).
Binary
Binary encoding (threshold).
Fourier
Fourier encoding (basis expansion).
Trait Implementations§
Source§impl Clone for EncodingMethod
impl Clone for EncodingMethod
Source§fn clone(&self) -> EncodingMethod
fn clone(&self) -> EncodingMethod
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 EncodingMethod
impl Debug for EncodingMethod
Source§impl PartialEq for EncodingMethod
impl PartialEq for EncodingMethod
impl Copy for EncodingMethod
impl Eq for EncodingMethod
impl StructuralPartialEq for EncodingMethod
Auto Trait Implementations§
impl Freeze for EncodingMethod
impl RefUnwindSafe for EncodingMethod
impl Send for EncodingMethod
impl Sync for EncodingMethod
impl Unpin for EncodingMethod
impl UnwindSafe for EncodingMethod
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