#[non_exhaustive]pub enum MixedCPDS {
Categorical(CatCPDS),
Gaussian(Box<GaussCPDS>),
}Expand description
The sufficient statistics of a mixed CPD.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Categorical(CatCPDS)
Categorical sufficient statistics.
Gaussian(Box<GaussCPDS>)
Gaussian sufficient statistics.
Trait Implementations§
Source§impl CSSEstimator<MixedCPDS> for SSE<'_, MixedTable>
impl CSSEstimator<MixedCPDS> for SSE<'_, MixedTable>
Source§impl CSSEstimator<MixedCPDS> for SSE<'_, MixedIncTable>
impl CSSEstimator<MixedCPDS> for SSE<'_, MixedIncTable>
Source§impl CSSEstimator<MixedCPDS> for SSE<'_, MixedWtdTable>
impl CSSEstimator<MixedCPDS> for SSE<'_, MixedWtdTable>
Source§impl<'de> Deserialize<'de> for MixedCPDS
impl<'de> Deserialize<'de> for MixedCPDS
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
Source§impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedTable>
impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedTable>
Source§impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedIncTable>
impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedIncTable>
Source§impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedWtdTable>
impl ParCSSEstimator<MixedCPDS> for SSE<'_, MixedWtdTable>
Auto Trait Implementations§
impl Freeze for MixedCPDS
impl RefUnwindSafe for MixedCPDS
impl Send for MixedCPDS
impl Sync for MixedCPDS
impl Unpin for MixedCPDS
impl UnsafeUnpin for MixedCPDS
impl UnwindSafe for MixedCPDS
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more