pub enum AddressNetwork {
Mainnet,
Testnet,
Regtest,
}
Expand description
Bitcoin network used by the address
Variants§
Implementations§
Source§impl AddressNetwork
impl AddressNetwork
Sourcepub fn is_testnet(self) -> bool
pub fn is_testnet(self) -> bool
Detects whether the network is a kind of test network (testnet, signet, regtest).
Trait Implementations§
Source§impl Clone for AddressNetwork
impl Clone for AddressNetwork
Source§fn clone(&self) -> AddressNetwork
fn clone(&self) -> AddressNetwork
Returns a copy 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 AddressNetwork
impl Debug for AddressNetwork
Source§impl Display for AddressNetwork
impl Display for AddressNetwork
Source§impl From<Address> for AddressNetwork
impl From<Address> for AddressNetwork
Source§impl From<Network> for AddressNetwork
impl From<Network> for AddressNetwork
Source§impl FromStr for AddressNetwork
impl FromStr for AddressNetwork
Source§impl Hash for AddressNetwork
impl Hash for AddressNetwork
Source§impl Ord for AddressNetwork
impl Ord for AddressNetwork
Source§fn cmp(&self, other: &AddressNetwork) -> Ordering
fn cmp(&self, other: &AddressNetwork) -> 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 AddressNetwork
impl PartialEq for AddressNetwork
Source§impl PartialOrd for AddressNetwork
impl PartialOrd for AddressNetwork
Source§impl StrictDecode for AddressNetwork
impl StrictDecode for AddressNetwork
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 AddressNetwork
impl StrictEncode for AddressNetwork
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 AddressNetwork
impl Eq for AddressNetwork
impl StructuralPartialEq for AddressNetwork
Auto Trait Implementations§
impl Freeze for AddressNetwork
impl RefUnwindSafe for AddressNetwork
impl Send for AddressNetwork
impl Sync for AddressNetwork
impl Unpin for AddressNetwork
impl UnwindSafe for AddressNetwork
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