pub struct ReferencePriceParams {
pub symbol: String,
}Expand description
Request parameters for the [reference_price] operation.
This struct holds all of the inputs you can pass when calling
reference_price.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
Implementations§
Source§impl ReferencePriceParams
impl ReferencePriceParams
Sourcepub fn builder(symbol: String) -> ReferencePriceParamsBuilder
pub fn builder(symbol: String) -> ReferencePriceParamsBuilder
Create a builder for [reference_price].
Required parameters:
symbol— String
Trait Implementations§
Source§impl Clone for ReferencePriceParams
impl Clone for ReferencePriceParams
Source§fn clone(&self) -> ReferencePriceParams
fn clone(&self) -> ReferencePriceParams
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 moreAuto Trait Implementations§
impl Freeze for ReferencePriceParams
impl RefUnwindSafe for ReferencePriceParams
impl Send for ReferencePriceParams
impl Sync for ReferencePriceParams
impl Unpin for ReferencePriceParams
impl UnsafeUnpin for ReferencePriceParams
impl UnwindSafe for ReferencePriceParams
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