#[non_exhaustive]pub enum Chain {
Hive,
HiveTestnet,
SteemLegacy,
}Expand description
A supported chain.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Hive
Hive, post-HF24. This is the default and the only one Hive callers want.
HiveTestnet
The Hive testnet.
SteemLegacy
Steem / pre-HF24 Hive, with the all-zero chain id.
Implementations§
Source§impl Chain
impl Chain
Sourcepub fn properties(&self) -> ChainProperties
pub fn properties(&self) -> ChainProperties
The chain’s parameters.
Sourcepub fn asset(&self, symbol: &str) -> Result<ChainAsset>
pub fn asset(&self, symbol: &str) -> Result<ChainAsset>
Look up a native asset by its ticker or its NAI.
Trait Implementations§
impl Copy for Chain
impl Eq for Chain
impl StructuralPartialEq for Chain
Auto Trait Implementations§
impl Freeze for Chain
impl RefUnwindSafe for Chain
impl Send for Chain
impl Sync for Chain
impl Unpin for Chain
impl UnsafeUnpin for Chain
impl UnwindSafe for Chain
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.