pub struct Option {
Show 40 fields pub uid: String, pub position_uid: String, pub ticker: String, pub class_code: String, pub basic_asset_position_uid: String, pub trading_status: i32, pub real_exchange: i32, pub direction: i32, pub payment_type: i32, pub style: i32, pub settlement_type: i32, pub name: String, pub currency: String, pub settlement_currency: String, pub asset_type: String, pub basic_asset: String, pub exchange: String, pub country_of_risk: String, pub country_of_risk_name: String, pub sector: String, pub lot: i32, pub basic_asset_size: Option<Quotation>, pub klong: Option<Quotation>, pub kshort: Option<Quotation>, pub dlong: Option<Quotation>, pub dshort: Option<Quotation>, pub dlong_min: Option<Quotation>, pub dshort_min: Option<Quotation>, pub min_price_increment: Option<Quotation>, pub strike_price: Option<MoneyValue>, pub expiration_date: Option<Timestamp>, pub first_trade_date: Option<Timestamp>, pub last_trade_date: Option<Timestamp>, pub first_1min_candle_date: Option<Timestamp>, pub first_1day_candle_date: Option<Timestamp>, pub short_enabled_flag: bool, pub for_iis_flag: bool, pub otc_flag: bool, pub buy_available_flag: bool, pub sell_available_flag: bool,
}
Expand description

Опцион.

Fields

uid: String

Уникальный идентификатор инструмента.

position_uid: String

Уникальный идентификатор позиции.

ticker: String

Тикер инструмента.

class_code: String

Класс-код.

basic_asset_position_uid: String

Уникальный идентификатор позиции основного инструмента.

trading_status: i32

Текущий режим торгов инструмента.

real_exchange: i32

Реальная площадка исполнения расчётов. Допустимые значения: [REAL_EXCHANGE_MOEX, REAL_EXCHANGE_RTS]

direction: i32

Направление опциона.

payment_type: i32

Тип расчетов по опциону.

style: i32

Стиль опциона.

settlement_type: i32

Способ исполнения опциона.

name: String

Название инструмента.

currency: String

Валюта.

settlement_currency: String

Валюта, в которой оценивается контракт.

asset_type: String

Тип актива.

basic_asset: String

Основной актив.

exchange: String

Биржа.

country_of_risk: String

Код страны рисков.

country_of_risk_name: String

Наименование страны рисков.

sector: String

Сектор экономики.

lot: i32

Количество бумаг в лоте.

basic_asset_size: Option<Quotation>

Размер основного актива.

klong: Option<Quotation>

Коэффициент ставки риска длинной позиции по клиенту.

kshort: Option<Quotation>

Коэффициент ставки риска короткой позиции по клиенту.

dlong: Option<Quotation>

Ставка риска минимальной маржи лонг.

dshort: Option<Quotation>

Ставка риска минимальной маржи шорт.

dlong_min: Option<Quotation>

Ставка риска начальной маржи лонг.

dshort_min: Option<Quotation>

Ставка риска начальной маржи шорт.

min_price_increment: Option<Quotation>

Минимальный шаг цены.

strike_price: Option<MoneyValue>

Цена страйка.

expiration_date: Option<Timestamp>

Дата истечения срока в формате UTC.

first_trade_date: Option<Timestamp>

Дата начала обращения контракта в формате UTC.

last_trade_date: Option<Timestamp>

Дата исполнения в формате UTC.

first_1min_candle_date: Option<Timestamp>

Дата первой минутной свечи в формате UTC.

first_1day_candle_date: Option<Timestamp>

Дата первой дневной свечи в формате UTC.

short_enabled_flag: bool

Признак доступности для операций шорт.

for_iis_flag: bool

Возможность покупки/продажи на ИИС.

otc_flag: bool

Признак внебиржевой ценной бумаги.

buy_available_flag: bool

Признак доступности для покупки.

sell_available_flag: bool

Признак доступности для продажи.

Implementations

Returns the enum value of trading_status, or the default if the field is set to an invalid enum value.

Sets trading_status to the provided enum value.

Returns the enum value of real_exchange, or the default if the field is set to an invalid enum value.

Sets real_exchange to the provided enum value.

Returns the enum value of direction, or the default if the field is set to an invalid enum value.

Sets direction to the provided enum value.

Returns the enum value of payment_type, or the default if the field is set to an invalid enum value.

Sets payment_type to the provided enum value.

Returns the enum value of style, or the default if the field is set to an invalid enum value.

Sets style to the provided enum value.

Returns the enum value of settlement_type, or the default if the field is set to an invalid enum value.

Sets settlement_type to the provided enum value.

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

Returns the “default value” for a type. Read more

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

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

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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Wrap the input message T in a tonic::Request

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

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more