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 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 DefaultEncoderFrontendError
impl Debug for DefaultEncoderFrontendError
Source§impl Error for DefaultEncoderFrontendError
Available on crate feature std only.
impl Error for DefaultEncoderFrontendError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
impl Eq for DefaultEncoderFrontendError
impl StructuralPartialEq for DefaultEncoderFrontendError
Auto Trait Implementations§
impl Freeze for DefaultEncoderFrontendError
impl RefUnwindSafe for DefaultEncoderFrontendError
impl Send for DefaultEncoderFrontendError
impl Sync for DefaultEncoderFrontendError
impl Unpin for DefaultEncoderFrontendError
impl UnwindSafe for DefaultEncoderFrontendError
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