Expand description
Storm application identifier.
Range up to 0..0x8000 is reserved for applications registered as
LNPBP standards. Range 0x8000-0xFFFF (custom user range) can be used
by any application without registration.
It is strongly advised to use random numbers from custom user range;
for instance by taking first two bytes of the SHA256 hash of the
application name or developer domain name and do a binary OR operation
with 0x8000.
Variants
Rgb
RGB smart contracts.
Future(u16)
Future applications. Numbers are reserved for LNPBP standardized apps.
Vendor(u16)
Vendor-specific applications which does not standardized by LNP/BP Standards Association.
Implementations
Trait Implementations
sourceimpl Ord for StormApp
impl Ord for StormApp
sourceimpl PartialOrd<StormApp> for StormApp
impl PartialOrd<StormApp> for StormApp
sourcefn partial_cmp(&self, other: &StormApp) -> Option<Ordering>
fn partial_cmp(&self, other: &StormApp) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl StrictDecode for StormApp
impl StrictDecode for StormApp
sourcefn 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. Read more
sourcefn 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 Read more
sourceimpl StrictEncode for StormApp
impl StrictEncode for StormApp
sourcefn 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. Read more
sourcefn strict_serialize(&self) -> Result<Vec<u8, Global>, Error>
fn strict_serialize(&self) -> Result<Vec<u8, Global>, Error>
Serializes data as a byte array using StrictEncode::strict_encode
function Read more
impl Copy for StormApp
impl Eq for StormApp
impl StructuralEq for StormApp
impl StructuralPartialEq for StormApp
Auto Trait Implementations
impl RefUnwindSafe for StormApp
impl Send for StormApp
impl Sync for StormApp
impl Unpin for StormApp
impl UnwindSafe for StormApp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more