pub enum LastSample {}
Expand description
An Interpolation
kind over the last observed sample.
Implementations§
Source§impl LastSample
impl LastSample
pub fn or<T>(sample: T) -> LastSampleOutput<T>
Trait Implementations§
Source§impl Debug for LastSample
impl Debug for LastSample
Source§impl InterpolationKind for LastSample
impl InterpolationKind for LastSample
Source§type Output<T> = LastSampleOutput<T>
where
T: Clone
type Output<T> = LastSampleOutput<T> where T: Clone
The parameterized
Interpolation
associated with this kind.Auto Trait Implementations§
impl Freeze for LastSample
impl RefUnwindSafe for LastSample
impl Send for LastSample
impl Sync for LastSample
impl Unpin for LastSample
impl UnwindSafe for LastSample
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more