pub struct RequestOptionChainReferencePrice {
pub series_id: OptionSeriesId,
pub instrument_id: InstrumentId,
pub client_id: Option<ClientId>,
pub request_id: UUID4,
pub ts_init: UnixNanos,
pub params: Option<Params>,
}Fields§
§series_id: OptionSeriesId§instrument_id: InstrumentId§client_id: Option<ClientId>§request_id: UUID4§ts_init: UnixNanos§params: Option<Params>Implementations§
Source§impl RequestOptionChainReferencePrice
impl RequestOptionChainReferencePrice
Sourcepub fn new(
series_id: OptionSeriesId,
instrument_id: InstrumentId,
client_id: Option<ClientId>,
request_id: UUID4,
ts_init: UnixNanos,
params: Option<Params>,
) -> Self
pub fn new( series_id: OptionSeriesId, instrument_id: InstrumentId, client_id: Option<ClientId>, request_id: UUID4, ts_init: UnixNanos, params: Option<Params>, ) -> Self
Creates a new RequestOptionChainReferencePrice instance.
Trait Implementations§
Source§impl Clone for RequestOptionChainReferencePrice
impl Clone for RequestOptionChainReferencePrice
Source§fn clone(&self) -> RequestOptionChainReferencePrice
fn clone(&self) -> RequestOptionChainReferencePrice
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RequestOptionChainReferencePrice
impl<'de> Deserialize<'de> for RequestOptionChainReferencePrice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RequestOptionChainReferencePrice
impl RefUnwindSafe for RequestOptionChainReferencePrice
impl Send for RequestOptionChainReferencePrice
impl Sync for RequestOptionChainReferencePrice
impl Unpin for RequestOptionChainReferencePrice
impl UnsafeUnpin for RequestOptionChainReferencePrice
impl UnwindSafe for RequestOptionChainReferencePrice
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