Skip to main content

TickSchemeError

Enum TickSchemeError 

Source
pub enum TickSchemeError {
Show 14 variants TickNotFinite { tick: f64, }, TickNotPositive { tick: f64, }, EmptyTiers, TierValuesNaN { index: usize, start: f64, stop: f64, step: f64, }, TierStartNotLessThanStop { index: usize, start: f64, stop: f64, }, TierStepNotPositive { index: usize, step: f64, }, TierStepNotLessThanRange { index: usize, start: f64, stop: f64, step: f64, range: f64, }, TierOverlapsPrevious { index: usize, start: f64, prev_stop: f64, }, TierStartOutsidePriceRange { index: usize, start: f64, }, TierStopOutsidePriceRange { index: usize, stop: f64, }, InvalidPrecision { source: CorrectnessError, }, EmptyTickExpansion, ExpandedTickOutsidePriceRange { value: f64, }, UnknownName { name: String, },
}
Expand description

Error returned when tick scheme construction or parsing fails.

Variants§

§

TickNotFinite

A fixed tick size was not finite.

Fields

§tick: f64

The invalid tick size.

§

TickNotPositive

A fixed tick size was not positive.

Fields

§tick: f64

The invalid tick size.

§

EmptyTiers

No tier definitions were supplied.

§

TierValuesNaN

A tier contained a NaN value.

Fields

§index: usize

The invalid tier index.

§start: f64

The tier start value.

§stop: f64

The tier stop value.

§step: f64

The tier step value.

§

TierStartNotLessThanStop

A tier start was not less than its stop.

Fields

§index: usize

The invalid tier index.

§start: f64

The tier start value.

§stop: f64

The tier stop value.

§

TierStepNotPositive

A tier step was not positive.

Fields

§index: usize

The invalid tier index.

§step: f64

The tier step value.

§

TierStepNotLessThanRange

A finite tier step was not smaller than the tier range.

Fields

§index: usize

The invalid tier index.

§start: f64

The tier start value.

§stop: f64

The tier stop value.

§step: f64

The tier step value.

§range: f64

The tier range.

§

TierOverlapsPrevious

A tier overlaps the previous tier.

Fields

§index: usize

The invalid tier index.

§start: f64

The tier start value.

§prev_stop: f64

The previous tier stop value.

§

TierStartOutsidePriceRange

A tier start was outside the representable price range.

Fields

§index: usize

The invalid tier index.

§start: f64

The tier start value.

§

TierStopOutsidePriceRange

A tier stop was outside the representable price range.

Fields

§index: usize

The invalid tier index.

§stop: f64

The tier stop value.

§

InvalidPrecision

The requested price precision is invalid.

Fields

§source: CorrectnessError

The source correctness error.

§

EmptyTickExpansion

Tier expansion produced no ticks.

§

ExpandedTickOutsidePriceRange

An expanded tick value was outside the representable price range.

Fields

§value: f64

The invalid expanded tick value.

§

UnknownName

The requested tick scheme name is not registered.

Fields

§name: String

The requested tick scheme name.

Trait Implementations§

Source§

impl Clone for TickSchemeError

Source§

fn clone(&self) -> TickSchemeError

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TickSchemeError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for TickSchemeError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for TickSchemeError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl PartialEq for TickSchemeError

Source§

fn eq(&self, other: &TickSchemeError) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for TickSchemeError

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.
§

impl<T> Ungil for T
where T: Send,