pub struct Chained<S, V> {
    pub value: V,
    /* private fields */
}Expand description
Capture the seed used to generate the given value.
Fields§
§value: VTrait Implementations§
Auto Trait Implementations§
impl<S, V> Freeze for Chained<S, V>
impl<S, V> RefUnwindSafe for Chained<S, V>where
    S: RefUnwindSafe,
    V: RefUnwindSafe,
impl<S, V> Send for Chained<S, V>
impl<S, V> Sync for Chained<S, V>
impl<S, V> Unpin for Chained<S, V>
impl<S, V> UnwindSafe for Chained<S, V>where
    S: UnwindSafe,
    V: 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