pub enum DefaultEncoderFrontendError {
ImpossibleSymbol,
}Variants§
ImpossibleSymbol
Tried to encode a symbol with zero probability under the used entropy model.
This error can usually be avoided by using a “leaky” distribution, as the
entropy model, i.e., a distribution that assigns a nonzero probability to all
symbols within a finite domain. Leaky distributions can be constructed with,
e.g., a LeakyQuantizer or with
LeakyCategorical::from_floating_point_probabilities.
Trait Implementations§
source§impl Clone for DefaultEncoderFrontendError
impl Clone for DefaultEncoderFrontendError
source§fn clone(&self) -> DefaultEncoderFrontendError
fn clone(&self) -> DefaultEncoderFrontendError
Returns a copy 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 DefaultEncoderFrontendError
impl Debug for DefaultEncoderFrontendError
source§impl Error for DefaultEncoderFrontendError
impl Error for DefaultEncoderFrontendError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<DefaultEncoderFrontendError> for DefaultEncoderFrontendError
impl PartialEq<DefaultEncoderFrontendError> for DefaultEncoderFrontendError
source§fn eq(&self, other: &DefaultEncoderFrontendError) -> bool
fn eq(&self, other: &DefaultEncoderFrontendError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.