pub enum OptionType {
    Call,
    Put,
}
Expand description

The type of option to be priced. Call or Put.

Variants

Call

Put

Implementations

Creates an instance of the OptionType enum.

Arguments
  • option_type - The type of option to be priced. Call or Put.
Example
use blackscholes::OptionType;
let option_type: OptionType = OptionType::Call;
Returns

An instance of the OptionType enum.

Returns

A string representation of the OptionType enum.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Performs the conversion.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Whether the pyclass is frozen. Read more
Class doc string
#[pyclass(subclass)]
#[pyclass(extends=…)]
#[pyclass(mapping)]
#[pyclass(sequence)]
Layout
Base class
This handles following two situations: Read more
Immutable or mutable
Specify this class has #[pyclass(dict)] or not.
Specify this class has #[pyclass(weakref)] or not.
The closest native ancestor. This is PyAny by default, and when you declare #[pyclass(extends=PyDict)], it’s PyDict. Read more
Utility type to make Py::as_ref work.
Class name.
Module name, if any.
Returns the PyTypeObject instance for this type.
Returns the safe abstraction over the type object.
Checks if object is an instance of this type or a subclass of this type.
Checks if object is an instance of this type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Extracts Self from the source PyObject.

Calls U::from(self).

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

Arguments for exception
Should always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Checks if self is actually part of its subset T (and can be converted to it).
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
The inclusion map: converts self to the equivalent element of its superset.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.