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