Enum psbt::PsbtVersion
source · [−]#[repr(u32)]
pub enum PsbtVersion {
V0,
V2,
}Expand description
Version of the PSBT (V0 stands for BIP174-defined version; V2 - for BIP370).
Variants
V0
Version defined by BIP174.
V2
Version defined by BIP370.
Trait Implementations
sourceimpl Clone for PsbtVersion
impl Clone for PsbtVersion
sourcefn clone(&self) -> PsbtVersion
fn clone(&self) -> PsbtVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PsbtVersion
impl Debug for PsbtVersion
sourceimpl Default for PsbtVersion
impl Default for PsbtVersion
sourceimpl Hash for PsbtVersion
impl Hash for PsbtVersion
sourceimpl Ord for PsbtVersion
impl Ord for PsbtVersion
sourceimpl PartialEq<PsbtVersion> for PsbtVersion
impl PartialEq<PsbtVersion> for PsbtVersion
sourceimpl PartialOrd<PsbtVersion> for PsbtVersion
impl PartialOrd<PsbtVersion> for PsbtVersion
sourcefn partial_cmp(&self, other: &PsbtVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &PsbtVersion) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl StrictDecode for PsbtVersion
impl StrictDecode for PsbtVersion
sourcefn 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. Read more
sourcefn 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 Read more
sourceimpl StrictEncode for PsbtVersion
impl StrictEncode for PsbtVersion
sourcefn 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. Read more
sourcefn strict_serialize(&self) -> Result<Vec<u8, Global>, Error>
fn strict_serialize(&self) -> Result<Vec<u8, Global>, Error>
Serializes data as a byte array using StrictEncode::strict_encode
function Read more
impl Copy for PsbtVersion
impl Eq for PsbtVersion
impl StructuralEq for PsbtVersion
impl StructuralPartialEq for PsbtVersion
Auto Trait Implementations
impl RefUnwindSafe for PsbtVersion
impl Send for PsbtVersion
impl Sync for PsbtVersion
impl Unpin for PsbtVersion
impl UnwindSafe for PsbtVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more