pub struct WalletEphemerals {
pub fees: (f32, f32, f32),
pub fiat: String,
pub exchange_rate: f64,
}Fields§
§fees: (f32, f32, f32)§fiat: String§exchange_rate: f64Trait Implementations§
Source§impl Clone for WalletEphemerals
impl Clone for WalletEphemerals
Source§fn clone(&self) -> WalletEphemerals
fn clone(&self) -> WalletEphemerals
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 WalletEphemerals
impl Debug for WalletEphemerals
Source§impl Default for WalletEphemerals
impl Default for WalletEphemerals
Source§fn default() -> WalletEphemerals
fn default() -> WalletEphemerals
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WalletEphemerals
impl<'de> Deserialize<'de> for WalletEphemerals
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 PartialEq for WalletEphemerals
impl PartialEq for WalletEphemerals
Source§impl Serialize for WalletEphemerals
impl Serialize for WalletEphemerals
Source§impl StrictDecode for WalletEphemerals
impl StrictDecode for WalletEphemerals
Source§fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
Decode with the given
std::io::Read instance; must either
construct an instance or return implementation-specific error type.Source§fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
Tries to deserialize byte array into the current type using
StrictDecode::strict_decode. If there are some data remains in the
buffer once deserialization is completed, fails with
Error::DataNotEntirelyConsumed. Use io::Cursor over the buffer and
StrictDecode::strict_decode to avoid such failures.Source§fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
Reads data from file at
path and reconstructs object from it. Fails
with Error::DataNotEntirelyConsumed if file contains remaining
data after the object reconstruction.Source§impl StrictEncode for WalletEphemerals
impl StrictEncode for WalletEphemerals
Source§fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
Encode with the given
std::io::Write instance; must return result
with either amount of bytes encoded – or implementation-specific
error type.Source§fn strict_serialize(&self) -> Result<Vec<u8>, Error>
fn strict_serialize(&self) -> Result<Vec<u8>, Error>
Serializes data as a byte array using
StrictEncode::strict_encode
functionimpl StructuralPartialEq for WalletEphemerals
Auto Trait Implementations§
impl Freeze for WalletEphemerals
impl RefUnwindSafe for WalletEphemerals
impl Send for WalletEphemerals
impl Sync for WalletEphemerals
impl Unpin for WalletEphemerals
impl UnwindSafe for WalletEphemerals
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