pub enum AmountExt {
Any,
Normal(u64),
Milli(u64, u16),
}Variants§
Any
Payments for any amount is accepted: useful for charity/donations, etc
Normal(u64)
Milli(u64, u16)
Implementations§
Trait Implementations§
Source§impl Ord for AmountExt
impl Ord for AmountExt
Source§impl PartialOrd for AmountExt
impl PartialOrd for AmountExt
Source§impl StrictDecode for AmountExt
impl StrictDecode for AmountExt
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 AmountExt
impl StrictEncode for AmountExt
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 Copy for AmountExt
impl Eq for AmountExt
impl StructuralPartialEq for AmountExt
Auto Trait Implementations§
impl Freeze for AmountExt
impl RefUnwindSafe for AmountExt
impl Send for AmountExt
impl Sync for AmountExt
impl Unpin for AmountExt
impl UnwindSafe for AmountExt
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