Enum bitcoin::address::NetworkUnchecked
source · pub enum NetworkUnchecked {}
Expand description
Marker that address’s network has not yet been validated. See section Parsing addresses
on Address
for details.
Trait Implementations§
source§impl Clone for NetworkUnchecked
impl Clone for NetworkUnchecked
source§fn clone(&self) -> NetworkUnchecked
fn clone(&self) -> NetworkUnchecked
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 NetworkUnchecked
impl Debug for NetworkUnchecked
source§impl Hash for NetworkUnchecked
impl Hash for NetworkUnchecked
source§impl NetworkValidation for NetworkUnchecked
impl NetworkValidation for NetworkUnchecked
source§const IS_CHECKED: bool = false
const IS_CHECKED: bool = false
Indicates whether this
NetworkValidation
is NetworkChecked
or not.source§impl Ord for NetworkUnchecked
impl Ord for NetworkUnchecked
source§fn cmp(&self, other: &NetworkUnchecked) -> Ordering
fn cmp(&self, other: &NetworkUnchecked) -> 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<NetworkUnchecked> for NetworkUnchecked
impl PartialEq<NetworkUnchecked> for NetworkUnchecked
source§fn eq(&self, other: &NetworkUnchecked) -> bool
fn eq(&self, other: &NetworkUnchecked) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<NetworkUnchecked> for NetworkUnchecked
impl PartialOrd<NetworkUnchecked> for NetworkUnchecked
source§fn partial_cmp(&self, other: &NetworkUnchecked) -> Option<Ordering>
fn partial_cmp(&self, other: &NetworkUnchecked) -> Option<Ordering>
1.0.0 · source§fn 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 moreimpl Eq for NetworkUnchecked
impl StructuralEq for NetworkUnchecked
impl StructuralPartialEq for NetworkUnchecked
Auto Trait Implementations§
impl RefUnwindSafe for NetworkUnchecked
impl Send for NetworkUnchecked
impl Sync for NetworkUnchecked
impl Unpin for NetworkUnchecked
impl UnwindSafe for NetworkUnchecked
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