pub struct GetBondFiltersRequestQuery {
pub symbol: String,
pub issuer_id: String,
}Fields§
§symbol: StringThis should always be set to “BOND”
- Example:
"BOND".to_string()
issuer_id: StringSpecifies the issuerId of the bond issuer type. IssuerId can be retrieved from the /iserver/secdef/search endpoint searching for a genric bond symbol and using the BOND secType.
- Example:
"e1400715".to_string()
Trait Implementations§
Source§impl Clone for GetBondFiltersRequestQuery
impl Clone for GetBondFiltersRequestQuery
Source§fn clone(&self) -> GetBondFiltersRequestQuery
fn clone(&self) -> GetBondFiltersRequestQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetBondFiltersRequestQuery
impl Debug for GetBondFiltersRequestQuery
Source§impl Default for GetBondFiltersRequestQuery
impl Default for GetBondFiltersRequestQuery
Source§impl<'v_a> ValidateArgs<'v_a> for GetBondFiltersRequestQuery
impl<'v_a> ValidateArgs<'v_a> for GetBondFiltersRequestQuery
impl StructuralPartialEq for GetBondFiltersRequestQuery
Auto Trait Implementations§
impl Freeze for GetBondFiltersRequestQuery
impl RefUnwindSafe for GetBondFiltersRequestQuery
impl Send for GetBondFiltersRequestQuery
impl Sync for GetBondFiltersRequestQuery
impl Unpin for GetBondFiltersRequestQuery
impl UnsafeUnpin for GetBondFiltersRequestQuery
impl UnwindSafe for GetBondFiltersRequestQuery
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