#[non_exhaustive]pub enum SamplerError {
ItemOutOfRange,
SampleFull,
OutsideSupport,
AlreadySelected,
}Expand description
A disabled sampler transition.
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.
ItemOutOfRange
The item index is outside the distribution.
SampleFull
The bounded sample is full.
OutsideSupport
The item has zero support weight.
AlreadySelected
The item has already been selected.
Trait Implementations§
Source§impl Clone for SamplerError
impl Clone for SamplerError
Source§fn clone(&self) -> SamplerError
fn clone(&self) -> SamplerError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SamplerError
Source§impl Debug for SamplerError
impl Debug for SamplerError
Source§impl Display for SamplerError
impl Display for SamplerError
impl Eq for SamplerError
Source§impl Error for SamplerError
impl Error for SamplerError
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()
Source§impl PartialEq for SamplerError
impl PartialEq for SamplerError
impl StructuralPartialEq for SamplerError
Auto Trait Implementations§
impl Freeze for SamplerError
impl RefUnwindSafe for SamplerError
impl Send for SamplerError
impl Sync for SamplerError
impl Unpin for SamplerError
impl UnsafeUnpin for SamplerError
impl UnwindSafe for SamplerError
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