pub struct RawSignHashParams {
pub hash: Hex,
}Expand description
Parameters for signing a pre-computed hash with the raw_sign RPC.
JSON schema
{
"title": "RawSignHashParams",
"description": "Parameters for signing a pre-computed hash with the
`raw_sign` RPC.",
"type": "object",
"required": [
"hash"
],
"properties": {
"hash": {
"allOf": [
{
"$ref": "#/components/schemas/Hex"
},
{
"description": "The hash to sign."
}
]
}
},
"x-stainless-model": "wallets.raw_sign_hash_params"
}Fields§
§hash: HexTrait Implementations§
Source§impl Clone for RawSignHashParams
impl Clone for RawSignHashParams
Source§fn clone(&self) -> RawSignHashParams
fn clone(&self) -> RawSignHashParams
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 moreSource§impl Debug for RawSignHashParams
impl Debug for RawSignHashParams
Source§impl<'de> Deserialize<'de> for RawSignHashParams
impl<'de> Deserialize<'de> for RawSignHashParams
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 From<&RawSignHashParams> for RawSignHashParams
impl From<&RawSignHashParams> for RawSignHashParams
Source§fn from(value: &RawSignHashParams) -> Self
fn from(value: &RawSignHashParams) -> Self
Converts to this type from the input type.
Source§impl From<RawSignHashParams> for RawSignInputParams
impl From<RawSignHashParams> for RawSignInputParams
Source§fn from(value: RawSignHashParams) -> Self
fn from(value: RawSignHashParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RawSignHashParams
impl RefUnwindSafe for RawSignHashParams
impl Send for RawSignHashParams
impl Sync for RawSignHashParams
impl Unpin for RawSignHashParams
impl UnsafeUnpin for RawSignHashParams
impl UnwindSafe for RawSignHashParams
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