[−][src]Enum bitcoin::blockdata::transaction::SigHashType
Hashtype of a transaction, encoded in the last byte of a signature Fixed values so they can be casted as integer types for encoding
Variants
All
0x1: Sign all outputs
None
0x2: Sign no outputs --- anyone can choose the destination
Single
0x3: Sign the output whose index matches this input's index. If none exists,
sign the hash 0000000000000000000000000000000000000000000000000000000000000001
.
(This rule is probably an unintentional C++ism, but it's consensus so we have
to follow it.)
AllPlusAnyoneCanPay
0x81: Sign all outputs but only this input
NonePlusAnyoneCanPay
0x82: Sign no outputs and only this input
SinglePlusAnyoneCanPay
0x83: Sign one output and only this input (see Single
for what "one output" means)
Methods
impl SigHashType
[src]
pub fn from_u32(n: u32) -> SigHashType
[src]
Reads a 4-byte uint32 as a sighash type
pub fn as_u32(self) -> u32
[src]
Converts to a u32
Trait Implementations
impl Serialize for SigHashType
[src]
impl Deserialize for SigHashType
[src]
impl From<SigHashType> for u32
[src]
fn from(t: SigHashType) -> u32
[src]
impl Clone for SigHashType
[src]
fn clone(&self) -> SigHashType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<SigHashType> for SigHashType
[src]
fn eq(&self, other: &SigHashType) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for SigHashType
[src]
impl Copy for SigHashType
[src]
impl Display for SigHashType
[src]
impl Debug for SigHashType
[src]
impl FromStr for SigHashType
[src]
Auto Trait Implementations
impl Unpin for SigHashType
impl Sync for SigHashType
impl Send for SigHashType
impl UnwindSafe for SigHashType
impl RefUnwindSafe for SigHashType
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,