pub struct CexSymbolMetadataOptions {
pub exchange: Option<String>,
pub market: Option<String>,
pub base: Option<String>,
pub quote: Option<String>,
pub status: Option<String>,
pub limit: Option<i64>,
pub page: Option<i64>,
}Fields§
§exchange: Option<String>§market: Option<String>§base: Option<String>§quote: Option<String>§status: Option<String>§limit: Option<i64>§page: Option<i64>Implementations§
Source§impl CexSymbolMetadataOptions
impl CexSymbolMetadataOptions
pub fn new() -> Self
pub fn exchange(self, exchange: impl Into<String>) -> Self
pub fn market(self, market: impl Into<String>) -> Self
pub fn base(self, base: impl Into<String>) -> Self
pub fn quote(self, quote: impl Into<String>) -> Self
pub fn status(self, status: impl Into<String>) -> Self
pub fn limit(self, limit: i64) -> Self
pub fn page(self, page: i64) -> Self
Auto Trait Implementations§
impl Freeze for CexSymbolMetadataOptions
impl RefUnwindSafe for CexSymbolMetadataOptions
impl Send for CexSymbolMetadataOptions
impl Sync for CexSymbolMetadataOptions
impl Unpin for CexSymbolMetadataOptions
impl UnsafeUnpin for CexSymbolMetadataOptions
impl UnwindSafe for CexSymbolMetadataOptions
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