pub struct RawSignParams {
pub hash: Option<String>,
}Expand description
RawSignParams
JSON schema
{
"properties": {
"hash": {
"description": "The hash to sign. Must start with `0x`.",
"type": "string"
}
}
}Fields§
§hash: Option<String>The hash to sign. Must start with 0x.
Trait Implementations§
Source§impl Clone for RawSignParams
impl Clone for RawSignParams
Source§fn clone(&self) -> RawSignParams
fn clone(&self) -> RawSignParams
Returns a duplicate of the value. Read more
1.0.0 · 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 RawSignParams
impl Debug for RawSignParams
Source§impl Default for RawSignParams
impl Default for RawSignParams
Source§impl<'de> Deserialize<'de> for RawSignParams
impl<'de> Deserialize<'de> for RawSignParams
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<&RawSignParams> for RawSignParams
impl From<&RawSignParams> for RawSignParams
Source§fn from(value: &RawSignParams) -> Self
fn from(value: &RawSignParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RawSignParams
impl RefUnwindSafe for RawSignParams
impl Send for RawSignParams
impl Sync for RawSignParams
impl Unpin for RawSignParams
impl UnwindSafe for RawSignParams
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