pub struct CurrencyCode {
pub name: &'static str,
pub code: &'static str,
pub numeric: i32,
pub unit: i32,
pub code_type: &'static str,
pub countries: &'static [&'static str],
}
Fields§
§name: &'static str
§code: &'static str
§numeric: i32
§unit: i32
§code_type: &'static str
§countries: &'static [&'static str]
Trait Implementations§
Source§impl Clone for CurrencyCode
impl Clone for CurrencyCode
Source§fn clone(&self) -> CurrencyCode
fn clone(&self) -> CurrencyCode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CurrencyCode
impl Debug for CurrencyCode
Source§impl Hash for CurrencyCode
impl Hash for CurrencyCode
Source§impl PartialEq for CurrencyCode
impl PartialEq for CurrencyCode
impl Copy for CurrencyCode
impl Eq for CurrencyCode
impl StructuralPartialEq for CurrencyCode
Auto Trait Implementations§
impl Freeze for CurrencyCode
impl RefUnwindSafe for CurrencyCode
impl Send for CurrencyCode
impl Sync for CurrencyCode
impl Unpin for CurrencyCode
impl UnwindSafe for CurrencyCode
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