pub enum RawSignInputParams {
HashParams(RawSignHashParams),
BytesParams(RawSignBytesParams),
}Expand description
Parameters for the raw_sign RPC.
JSON schema
{
"title": "RawSignInputParams",
"description": "Parameters for the `raw_sign` RPC.",
"oneOf": [
{
"$ref": "#/components/schemas/RawSignHashParams"
},
{
"$ref": "#/components/schemas/RawSignBytesParams"
}
],
"x-stainless-model": "wallets.raw_sign_input_params"
}Variants§
HashParams(RawSignHashParams)
BytesParams(RawSignBytesParams)
Trait Implementations§
Source§impl Clone for RawSignInputParams
impl Clone for RawSignInputParams
Source§fn clone(&self) -> RawSignInputParams
fn clone(&self) -> RawSignInputParams
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 RawSignInputParams
impl Debug for RawSignInputParams
Source§impl<'de> Deserialize<'de> for RawSignInputParams
impl<'de> Deserialize<'de> for RawSignInputParams
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<&RawSignInputParams> for RawSignInputParams
impl From<&RawSignInputParams> for RawSignInputParams
Source§fn from(value: &RawSignInputParams) -> Self
fn from(value: &RawSignInputParams) -> Self
Converts to this type from the input type.
Source§impl From<RawSignBytesParams> for RawSignInputParams
impl From<RawSignBytesParams> for RawSignInputParams
Source§fn from(value: RawSignBytesParams) -> Self
fn from(value: RawSignBytesParams) -> 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 RawSignInputParams
impl RefUnwindSafe for RawSignInputParams
impl Send for RawSignInputParams
impl Sync for RawSignInputParams
impl Unpin for RawSignInputParams
impl UnsafeUnpin for RawSignInputParams
impl UnwindSafe for RawSignInputParams
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