pub enum RawSignBytesHashFunction {
Blake2b256,
Keccak256,
Sha256,
}Expand description
Hash function for bytes in the raw_sign RPC.
JSON schema
{
"title": "RawSignBytesHashFunction",
"description": "Hash function for bytes in the `raw_sign` RPC.",
"type": "string",
"enum": [
"blake2b256",
"keccak256",
"sha256"
],
"x-stainless-model": "wallets.raw_sign_bytes_hash_function"
}Variants§
Trait Implementations§
Source§impl Clone for RawSignBytesHashFunction
impl Clone for RawSignBytesHashFunction
Source§fn clone(&self) -> RawSignBytesHashFunction
fn clone(&self) -> RawSignBytesHashFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RawSignBytesHashFunction
Source§impl Debug for RawSignBytesHashFunction
impl Debug for RawSignBytesHashFunction
Source§impl<'de> Deserialize<'de> for RawSignBytesHashFunction
impl<'de> Deserialize<'de> for RawSignBytesHashFunction
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 Display for RawSignBytesHashFunction
impl Display for RawSignBytesHashFunction
impl Eq for RawSignBytesHashFunction
Source§impl From<&RawSignBytesHashFunction> for RawSignBytesHashFunction
impl From<&RawSignBytesHashFunction> for RawSignBytesHashFunction
Source§fn from(value: &RawSignBytesHashFunction) -> Self
fn from(value: &RawSignBytesHashFunction) -> Self
Converts to this type from the input type.
Source§impl FromStr for RawSignBytesHashFunction
impl FromStr for RawSignBytesHashFunction
Source§impl Hash for RawSignBytesHashFunction
impl Hash for RawSignBytesHashFunction
Source§impl Ord for RawSignBytesHashFunction
impl Ord for RawSignBytesHashFunction
Source§fn cmp(&self, other: &RawSignBytesHashFunction) -> Ordering
fn cmp(&self, other: &RawSignBytesHashFunction) -> Ordering
1.21.0 (const: unstable) · 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 for RawSignBytesHashFunction
impl PartialEq for RawSignBytesHashFunction
Source§fn eq(&self, other: &RawSignBytesHashFunction) -> bool
fn eq(&self, other: &RawSignBytesHashFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RawSignBytesHashFunction
impl PartialOrd for RawSignBytesHashFunction
Source§impl Serialize for RawSignBytesHashFunction
impl Serialize for RawSignBytesHashFunction
impl StructuralPartialEq for RawSignBytesHashFunction
Source§impl TryFrom<&String> for RawSignBytesHashFunction
impl TryFrom<&String> for RawSignBytesHashFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RawSignBytesHashFunction
impl TryFrom<&str> for RawSignBytesHashFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RawSignBytesHashFunction
impl TryFrom<String> for RawSignBytesHashFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for RawSignBytesHashFunction
impl RefUnwindSafe for RawSignBytesHashFunction
impl Send for RawSignBytesHashFunction
impl Sync for RawSignBytesHashFunction
impl Unpin for RawSignBytesHashFunction
impl UnsafeUnpin for RawSignBytesHashFunction
impl UnwindSafe for RawSignBytesHashFunction
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