pub struct Request {
pub version: Version,
pub required: Required,
pub optional: HashMap<String, Value>,
}
Expand description
Signing request.
Fields§
§version: Version
Version of this signing request.
required: Required
Required parameters of the signing process.
All required parameters must be understood by the signing process or the entire request is to be rejected.
optional: HashMap<String, Value>
Optional parameters for the signing process.
The server may ignore any or all parameters in this group. If any parameter is not understood by the server it must be ignored.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Request
impl<'de> Deserialize<'de> for Request
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
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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