pub struct TopTradersDto { /* private fields */ }Implementations§
Source§impl TopTradersDto
impl TopTradersDto
pub fn buy_amount<T>(self, value: T) -> Self
pub fn buy_amount_in_native<T>(self, value: T) -> Self
pub fn buy_amount_in_usd<T>(self, value: T) -> Self
pub fn buy_count<T>(self, value: T) -> Self
pub fn sell_amount<T>(self, value: T) -> Self
pub fn sell_amount_in_native<T>(self, value: T) -> Self
pub fn sell_amount_in_usd<T>(self, value: T) -> Self
pub fn sell_count<T>(self, value: T) -> Self
pub fn token_address<T>(self, value: T) -> Self
pub fn trade_amount<T>(self, value: T) -> Self
pub fn trade_count<T>(self, value: T) -> Self
pub fn wallet_address<T>(self, value: T) -> Self
Trait Implementations§
Source§impl Clone for TopTradersDto
impl Clone for TopTradersDto
Source§fn clone(&self) -> TopTradersDto
fn clone(&self) -> TopTradersDto
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TopTradersDto
impl Debug for TopTradersDto
Source§impl Default for TopTradersDto
impl Default for TopTradersDto
Source§impl From<TopTradersDto> for TopTradersDto
impl From<TopTradersDto> for TopTradersDto
Source§fn from(value: TopTradersDto) -> Self
fn from(value: TopTradersDto) -> Self
Converts to this type from the input type.
Source§impl TryFrom<TopTradersDto> for TopTradersDto
impl TryFrom<TopTradersDto> for TopTradersDto
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TopTradersDto) -> Result<Self, ConversionError>
fn try_from(value: TopTradersDto) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TopTradersDto
impl RefUnwindSafe for TopTradersDto
impl Send for TopTradersDto
impl Sync for TopTradersDto
impl Unpin for TopTradersDto
impl UnwindSafe for TopTradersDto
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