pub struct InstrumentsRequest<'a> {
pub inst_type: &'a InstType,
pub inst_family: Option<&'a str>,
}Expand description
Request for get_instruments.
Fields§
§inst_type: &'a InstTypeInstrument type.
inst_family: Option<&'a str>Instrument family filter (optional, for derivatives).
Trait Implementations§
Source§impl<'a> Clone for InstrumentsRequest<'a>
impl<'a> Clone for InstrumentsRequest<'a>
Source§fn clone(&self) -> InstrumentsRequest<'a>
fn clone(&self) -> InstrumentsRequest<'a>
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<'a> Debug for InstrumentsRequest<'a>
impl<'a> Debug for InstrumentsRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for InstrumentsRequest<'a>
impl<'a> RefUnwindSafe for InstrumentsRequest<'a>
impl<'a> Send for InstrumentsRequest<'a>
impl<'a> Sync for InstrumentsRequest<'a>
impl<'a> Unpin for InstrumentsRequest<'a>
impl<'a> UnsafeUnpin for InstrumentsRequest<'a>
impl<'a> UnwindSafe for InstrumentsRequest<'a>
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