pub struct Height(/* private fields */);
Available on crate feature
alloc
only.Expand description
An absolute block height, guaranteed to always contain a valid height value.
Implementations§
source§impl Height
impl Height
sourcepub fn from_hex(s: &str) -> Result<Self, ParseHeightError>
pub fn from_hex(s: &str) -> Result<Self, ParseHeightError>
Creates a Height
from a hex string.
The input string may or may not contain a typical hex prefix e.g., 0x
.
sourcepub const fn from_consensus(n: u32) -> Result<Height, ConversionError>
pub const fn from_consensus(n: u32) -> Result<Height, ConversionError>
sourcepub const fn to_consensus_u32(self) -> u32
pub const fn to_consensus_u32(self) -> u32
Converts this Height
to its inner u32
value.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Height
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for Height
Available on crate feature
serde
only.source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<Height> for BlockHeight
impl From<Height> for BlockHeight
source§fn from(h: Height) -> Self
fn from(h: Height) -> Self
Converts a locktime::absolute::Height
to a BlockHeight
.
An absolute locktime block height has a maximum value of absolute::LOCK_TIME_THRESHOLD
(500,000,000) where as a BlockHeight
is a thin wrapper around a u32
, the two types are
not interchangeable.
source§impl Ord for Height
impl Ord for Height
source§impl PartialOrd for Height
impl PartialOrd for Height
source§impl TryFrom<BlockHeight> for Height
impl TryFrom<BlockHeight> for Height
source§fn try_from(h: BlockHeight) -> Result<Self, Self::Error>
fn try_from(h: BlockHeight) -> Result<Self, Self::Error>
Converts a BlockHeight
to a locktime::absolute::Height
.
An absolute locktime block height has a maximum value of absolute::LOCK_TIME_THRESHOLD
(500,000,000) where as a BlockHeight
is a thin wrapper around a u32
, the two types are
not interchangeable.
source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for Height
impl Eq for Height
impl StructuralPartialEq for Height
Auto Trait Implementations§
impl Freeze for Height
impl RefUnwindSafe for Height
impl Send for Height
impl Sync for Height
impl Unpin for Height
impl UnwindSafe for Height
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)