pub struct Low<T>(/* private fields */);Expand description
Lowest price value for a time period
Implementations§
Trait Implementations§
Source§impl<T> AddAssign for Low<T>
impl<T> AddAssign for Low<T>
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl<T> Bytes for Low<T>
impl<T> Bytes for Low<T>
Source§impl<T> Formattable for Low<T>where
T: Display,
impl<T> Formattable for Low<T>where
T: Display,
Source§impl<T> JsonSchema for Low<T>where
T: JsonSchema,
impl<T> JsonSchema for Low<T>where
T: JsonSchema,
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl<T: Ord> Ord for Low<T>
impl<T: Ord> Ord for Low<T>
Source§impl<T: PartialOrd> PartialOrd for Low<T>
impl<T: PartialOrd> PartialOrd for Low<T>
impl<T: Copy> Copy for Low<T>
impl<T: Eq> Eq for Low<T>
impl<T> StructuralPartialEq for Low<T>
impl<T> TransparentPco<<T as Pco>::NumberType> for Low<T>
Auto Trait Implementations§
impl<T> Freeze for Low<T>where
T: Freeze,
impl<T> RefUnwindSafe for Low<T>where
T: RefUnwindSafe,
impl<T> Send for Low<T>where
T: Send,
impl<T> Sync for Low<T>where
T: Sync,
impl<T> Unpin for Low<T>where
T: Unpin,
impl<T> UnwindSafe for Low<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> FromInnerSlice<<T as Pco>::NumberType> for Twhere
T: PcoVecValue,
impl<T> FromInnerSlice<<T as Pco>::NumberType> for Twhere
T: PcoVecValue,
const _SIZE_CHECK: ()
const _ALIGN_CHECK: ()
fn from_inner_slice(vec: Vec<<T as Pco>::NumberType>) -> Vec<T>
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