[][src]Struct survival_analysis::sample::LeftCensored

pub struct LeftCensored<T: RawData, D>(pub ArrayBase<T, D>);

Data that is left censored.

Trait Implementations

impl<F> From<Vec<F>> for LeftCensored<OwnedRepr<F>, Ix1>[src]

impl<S, F> InitialSolvePoint<WeibullDistribution<F>> for LeftCensored<S, Ix1> where
    S: Data<Elem = F>,
    F: Float + FromPrimitive
[src]

impl<D, O, T> LogLikelihood<D, O> for LeftCensored<T, Ix1> where
    D: LogCumulativeDensity<ArrayBase<T, Ix1>, O>,
    T: RawData
[src]

Auto Trait Implementations

impl<T, D> RefUnwindSafe for LeftCensored<T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe,
    <T as RawData>::Elem: RefUnwindSafe

impl<T, D> Send for LeftCensored<T, D> where
    D: Send,
    T: Data + Send

impl<T, D> Sync for LeftCensored<T, D> where
    D: Sync,
    T: Data + Sync

impl<T, D> Unpin for LeftCensored<T, D> where
    D: Unpin,
    T: Unpin

impl<T, D> UnwindSafe for LeftCensored<T, D> where
    D: UnwindSafe,
    T: UnwindSafe,
    <T as RawData>::Elem: RefUnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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<V, T> VZip<V> for T where
    V: MultiLane<T>,