[][src]Struct survival_analysis::sample::Weighted

pub struct Weighted<T, W: RawData, D> {
    pub time: T,
    pub weight: ArrayBase<W, D>,
}

A wrapper around data to apply weights to log likelihoods.

Fields

time: Tweight: ArrayBase<W, D>

Trait Implementations

impl<T, Distribution, W, D> InitialSolvePoint<Distribution> for Weighted<T, W, D> where
    W: RawData,
    T: InitialSolvePoint<Distribution>, 
[src]

impl<D, F, T, W> LogLikelihood<D, F> for Weighted<T, W, Ix1> where
    T: LogLikelihood<D, Array1<F>>,
    F: Float + ScalarOperand,
    W: Data<Elem = F>, 
[src]

Auto Trait Implementations

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

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

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

impl<T, W, D> Unpin for Weighted<T, W, D> where
    D: Unpin,
    T: Unpin,
    W: Unpin

impl<T, W, D> UnwindSafe for Weighted<T, W, D> where
    D: UnwindSafe,
    T: UnwindSafe,
    W: UnwindSafe,
    <W 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>,