[][src]Struct rustats::samplers::SliceSampler

pub struct SliceSampler<D> { /* fields omitted */ }

Methods

impl<D> SliceSampler<D> where
    D: Pdf<f64>, 
[src]

pub fn new(distribution: D, range: Range<f64>) -> Self[src]

pub fn distribution(&self) -> &D[src]

pub fn distribution_mut(&mut self) -> &mut D[src]

pub fn range(&self) -> Range<f64>[src]

pub fn set_last_x(&mut self, x: f64)[src]

Trait Implementations

impl<D: Debug> Debug for SliceSampler<D>[src]

impl<D> Distribution<f64> for SliceSampler<D> where
    D: Pdf<f64>, 
[src]

Auto Trait Implementations

impl<D> Send for SliceSampler<D> where
    D: Send

impl<D> Unpin for SliceSampler<D> where
    D: Unpin

impl<D> !Sync for SliceSampler<D>

impl<D> UnwindSafe for SliceSampler<D> where
    D: UnwindSafe

impl<D> !RefUnwindSafe for SliceSampler<D>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,