pub enum StormApp {
System,
Chat,
FileTransfer,
Storage,
Search,
RgbContracts,
RgbTransfers,
Future(u16),
Vendor(u16),
}
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§
System
System Storm app.
Chat
Chat messaging storm app.
FileTransfer
Distributed storage storm app.
Storage
Distributed storage storm app.
Search
Distributed data system with storage and search as a storm app.
RgbContracts
RGB smart contracts distribution network.
RgbTransfers
State transfers between 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§
Source§impl Ord for StormApp
impl Ord for StormApp
Source§impl PartialOrd for StormApp
impl PartialOrd for StormApp
Source§impl StrictDecode for StormApp
impl StrictDecode for StormApp
Source§fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
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>
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>
path
and reconstructs object from it. Fails
with Error::DataNotEntirelyConsumed
if file contains remaining
data after the object reconstruction.Source§impl StrictEncode for StormApp
impl StrictEncode for StormApp
Source§fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
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>
StrictEncode::strict_encode
function