pub struct Entry {
pub currency: [u8; 3],
pub start: usize,
pub end: usize,
}Expand description
A currency entry.
Fields§
§currency: [u8; 3]The currency symbol.
start: usizeThe index of the currency’s value in a response.
end: usizeThe exclusively ending index of the currency’s value in a response.
Trait Implementations§
impl Copy for Entry
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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