#[repr(i32)]pub enum HashOp {
NoHash = 0,
Sha256 = 1,
Sha512 = 2,
Keccak = 3,
Ripemd160 = 4,
Bitcoin = 5,
}
Variants§
NoHash = 0
NO_HASH is the default if no data passed. Note this is an illegal argument some places.
Sha256 = 1
Sha512 = 2
Keccak = 3
Ripemd160 = 4
Bitcoin = 5
ripemd160(sha256(x))
Implementations§
Source§impl HashOp
impl HashOp
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Ord for HashOp
impl Ord for HashOp
Source§impl PartialOrd for HashOp
impl PartialOrd for HashOp
impl Copy for HashOp
impl Eq for HashOp
impl StructuralPartialEq for HashOp
Auto Trait Implementations§
impl Freeze for HashOp
impl RefUnwindSafe for HashOp
impl Send for HashOp
impl Sync for HashOp
impl Unpin for HashOp
impl UnwindSafe for HashOp
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