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