#[repr(u8)]pub enum AssetLayer {
Layer1and2 = 0,
Layer2and3 = 1,
}Expand description
Layers on which a given asset can operate
Variants§
Layer1and2 = 0
Native chain asset(s), which can operate both on the layer of blockchain and payment/state channels (Bitcoin, sidechain-specific asset(s), like liquidBTC or confidential assets in Liquid)
Layer2and3 = 1
Derived assets, which are created and defined above blockchain (like RGB), but also can be used on top of payment/state channels
Trait Implementations§
Source§impl Clone for AssetLayer
impl Clone for AssetLayer
Source§fn clone(&self) -> AssetLayer
fn clone(&self) -> AssetLayer
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 AssetLayer
impl Debug for AssetLayer
Source§impl Display for AssetLayer
impl Display for AssetLayer
Source§impl Hash for AssetLayer
impl Hash for AssetLayer
Source§impl Ord for AssetLayer
impl Ord for AssetLayer
Source§fn cmp(&self, other: &AssetLayer) -> Ordering
fn cmp(&self, other: &AssetLayer) -> 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 AssetLayer
impl PartialEq for AssetLayer
Source§impl PartialOrd for AssetLayer
impl PartialOrd for AssetLayer
Source§impl StrictDecode for AssetLayer
impl StrictDecode for AssetLayer
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 AssetLayer
impl StrictEncode for AssetLayer
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 AssetLayer
impl Eq for AssetLayer
impl StructuralPartialEq for AssetLayer
Auto Trait Implementations§
impl Freeze for AssetLayer
impl RefUnwindSafe for AssetLayer
impl Send for AssetLayer
impl Sync for AssetLayer
impl Unpin for AssetLayer
impl UnwindSafe for AssetLayer
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