pub struct CurrencyTable { /* private fields */ }Expand description
The currency table
Implementations§
Source§impl CurrencyTable
impl CurrencyTable
Sourcepub fn entries(&self) -> &[CurrencyEntry]
pub fn entries(&self) -> &[CurrencyEntry]
Retrieve a slice of the entries in this table.
Trait Implementations§
Source§impl Clone for CurrencyTable
impl Clone for CurrencyTable
Source§fn clone(&self) -> CurrencyTable
fn clone(&self) -> CurrencyTable
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 CurrencyTable
impl Debug for CurrencyTable
Source§impl<'de> Deserialize<'de> for CurrencyTable
impl<'de> Deserialize<'de> for CurrencyTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for CurrencyTable
impl Hash for CurrencyTable
Source§impl Ord for CurrencyTable
impl Ord for CurrencyTable
Source§fn cmp(&self, other: &CurrencyTable) -> Ordering
fn cmp(&self, other: &CurrencyTable) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CurrencyTable
impl PartialEq for CurrencyTable
Source§impl PartialOrd for CurrencyTable
impl PartialOrd for CurrencyTable
Source§impl Serialize for CurrencyTable
impl Serialize for CurrencyTable
impl Eq for CurrencyTable
impl StructuralPartialEq for CurrencyTable
Auto Trait Implementations§
impl Freeze for CurrencyTable
impl RefUnwindSafe for CurrencyTable
impl Send for CurrencyTable
impl Sync for CurrencyTable
impl Unpin for CurrencyTable
impl UnsafeUnpin for CurrencyTable
impl UnwindSafe for CurrencyTable
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