Struct LeftCensored

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

Data that is left censored.

Tuple Fields§

§0: ArrayBase<T, D>

Trait Implementations§

Source§

impl<F> From<Vec<F>> for LeftCensored<OwnedRepr<F>, Ix1>

Source§

fn from(vec: Vec<F>) -> Self

Converts to this type from the input type.
Source§

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

Source§

impl<D, O, T> LogLikelihood<D, O> for LeftCensored<T, Ix1>

Source§

fn log_likelihood(&self, distribution: &D) -> O

Auto Trait Implementations§

§

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

§

impl<T, D> RefUnwindSafe for LeftCensored<T, D>

§

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

§

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

§

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

§

impl<T, D> UnwindSafe for LeftCensored<T, D>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

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