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