pub struct UnwrapErr<R>(pub R)
where
R: TryRng;Expand description
Wrapper around TryRng implementation which implements Rng
by panicking on potential errors.
§Examples
fn with_try_rng<R: TryRng>(mut rng: R) {
// rng does not impl Rng:
let _ = rng.try_next_u32(); // okay
// let _ = rng.next_u32(); // error
// An adapter borrowing rng:
let _ = UnwrapErr(&mut rng).next_u32();
// An adapter moving rng:
let mut rng = UnwrapErr(rng);
let _ = rng.next_u32();
}
fn call_with_unsized_try_rng<R: TryRng + ?Sized>(rng: &mut R) {
// R is unsized, thus we must use &mut R:
let mut rng = UnwrapErr(rng);
let _ = rng.next_u32();
}Tuple Fields§
§0: RImplementations§
Source§impl<'r, R> UnwrapErr<&'r mut R>
impl<'r, R> UnwrapErr<&'r mut R>
Sourcepub fn re<'b>(&'b mut self) -> UnwrapErr<&'b mut R>where
'r: 'b,
pub fn re<'b>(&'b mut self) -> UnwrapErr<&'b mut R>where
'r: 'b,
Reborrow with a new lifetime
Rust allows references like &T or &mut T to be “reborrowed” through
coercion: essentially, the pointer is copied under a new, shorter, lifetime.
Until rfcs#1403 lands, reborrows on user types require a method call.
Trait Implementations§
impl<R> Copy for UnwrapErr<R>
impl<R> Eq for UnwrapErr<R>
Source§impl<R> PartialEq for UnwrapErr<R>
impl<R> PartialEq for UnwrapErr<R>
impl<R> StructuralPartialEq for UnwrapErr<R>
impl<R> TryCryptoRng for UnwrapErr<R>where
R: TryCryptoRng,
Source§impl<R> TryRng for UnwrapErr<R>where
R: TryRng,
impl<R> TryRng for UnwrapErr<R>where
R: TryRng,
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a RNG error. Read more
Source§fn try_next_u32(&mut self) -> Result<u32, <UnwrapErr<R> as TryRng>::Error>
fn try_next_u32(&mut self) -> Result<u32, <UnwrapErr<R> as TryRng>::Error>
Return the next random
u32.Auto Trait Implementations§
impl<R> Freeze for UnwrapErr<R>where
R: Freeze,
impl<R> RefUnwindSafe for UnwrapErr<R>where
R: RefUnwindSafe,
impl<R> Send for UnwrapErr<R>where
R: Send,
impl<R> Sync for UnwrapErr<R>where
R: Sync,
impl<R> Unpin for UnwrapErr<R>where
R: Unpin,
impl<R> UnsafeUnpin for UnwrapErr<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for UnwrapErr<R>where
R: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<R> CryptoRng for R
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moreimpl<R> RngCore for Rwhere
R: Rng,
Source§impl<R> RngExt for R
impl<R> RngExt for R
Source§fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
Return a random value via the
StandardUniform distribution. Read moreSource§fn random_iter<T>(self) -> Iter<StandardUniform, Self, T> ⓘ
fn random_iter<T>(self) -> Iter<StandardUniform, Self, T> ⓘ
Source§fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
Generate a random value in the given range. Read more
Source§fn random_bool(&mut self, p: f64) -> bool
fn random_bool(&mut self, p: f64) -> bool
Return a bool with a probability
p of being true. Read moreSource§fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
Return a bool with a probability of
numerator/denominator of being
true. Read moreSource§fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
Sample a new value, using the given distribution. Read more
Source§fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T> ⓘwhere
D: Distribution<T>,
Self: Sized,
fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T> ⓘwhere
D: Distribution<T>,
Self: Sized,
Create an iterator that generates values using the given distribution. Read more