pub enum RawSignBytesEncoding {
Base64,
Hex,
Utf8,
}Expand description
Encoding scheme for bytes in the raw_sign RPC.
JSON schema
{
"title": "RawSignBytesEncoding",
"description": "Encoding scheme for bytes in the `raw_sign` RPC.",
"type": "string",
"enum": [
"base64",
"hex",
"utf-8"
],
"x-stainless-model": "wallets.raw_sign_bytes_encoding"
}Variants§
Trait Implementations§
Source§impl Clone for RawSignBytesEncoding
impl Clone for RawSignBytesEncoding
Source§fn clone(&self) -> RawSignBytesEncoding
fn clone(&self) -> RawSignBytesEncoding
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 RawSignBytesEncoding
Source§impl Debug for RawSignBytesEncoding
impl Debug for RawSignBytesEncoding
Source§impl<'de> Deserialize<'de> for RawSignBytesEncoding
impl<'de> Deserialize<'de> for RawSignBytesEncoding
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 RawSignBytesEncoding
impl Display for RawSignBytesEncoding
impl Eq for RawSignBytesEncoding
Source§impl From<&RawSignBytesEncoding> for RawSignBytesEncoding
impl From<&RawSignBytesEncoding> for RawSignBytesEncoding
Source§fn from(value: &RawSignBytesEncoding) -> Self
fn from(value: &RawSignBytesEncoding) -> Self
Converts to this type from the input type.
Source§impl FromStr for RawSignBytesEncoding
impl FromStr for RawSignBytesEncoding
Source§impl Hash for RawSignBytesEncoding
impl Hash for RawSignBytesEncoding
Source§impl Ord for RawSignBytesEncoding
impl Ord for RawSignBytesEncoding
Source§fn cmp(&self, other: &RawSignBytesEncoding) -> Ordering
fn cmp(&self, other: &RawSignBytesEncoding) -> 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 RawSignBytesEncoding
impl PartialEq for RawSignBytesEncoding
Source§fn eq(&self, other: &RawSignBytesEncoding) -> bool
fn eq(&self, other: &RawSignBytesEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RawSignBytesEncoding
impl PartialOrd for RawSignBytesEncoding
Source§impl Serialize for RawSignBytesEncoding
impl Serialize for RawSignBytesEncoding
impl StructuralPartialEq for RawSignBytesEncoding
Source§impl TryFrom<&String> for RawSignBytesEncoding
impl TryFrom<&String> for RawSignBytesEncoding
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RawSignBytesEncoding
impl TryFrom<&str> for RawSignBytesEncoding
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RawSignBytesEncoding
impl TryFrom<String> for RawSignBytesEncoding
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for RawSignBytesEncoding
impl RefUnwindSafe for RawSignBytesEncoding
impl Send for RawSignBytesEncoding
impl Sync for RawSignBytesEncoding
impl Unpin for RawSignBytesEncoding
impl UnsafeUnpin for RawSignBytesEncoding
impl UnwindSafe for RawSignBytesEncoding
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