pub struct AlgorithmSelection {
pub enabled_variants: Vec<String>,
pub select_mask: Option<String>,
}Expand description
Algorithm variant selection
Fields§
§enabled_variants: Vec<String>§select_mask: Option<String>SELECT mask as 6-bit string (e.g., “1 0 1 0 0 0” for ST and CD) Format: ST CT CD RESERVED DE SY
- ST: Single Timeseries (output: _DDA_ST)
- CT: Cross-Timeseries (output: _DDA_CT)
- CD: Cross-Dynamical (output: _CD_DDA_ST)
- RESERVED: Internal development function (not for user use)
- DE: Delay Embedding (output: _DE)
- SY: Synchronization (output: _SY)
Trait Implementations§
Source§impl Clone for AlgorithmSelection
impl Clone for AlgorithmSelection
Source§fn clone(&self) -> AlgorithmSelection
fn clone(&self) -> AlgorithmSelection
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 AlgorithmSelection
impl Debug for AlgorithmSelection
Source§impl<'de> Deserialize<'de> for AlgorithmSelection
impl<'de> Deserialize<'de> for AlgorithmSelection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AlgorithmSelection
impl RefUnwindSafe for AlgorithmSelection
impl Send for AlgorithmSelection
impl Sync for AlgorithmSelection
impl Unpin for AlgorithmSelection
impl UnwindSafe for AlgorithmSelection
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