pub struct ApproveParams {
pub pairing_id: String,
}Expand description
control.pairing.approve params.
Fields§
§pairing_id: StringThe pending pairing’s id (from pairing.request).
Trait Implementations§
Source§impl Clone for ApproveParams
impl Clone for ApproveParams
Source§fn clone(&self) -> ApproveParams
fn clone(&self) -> ApproveParams
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 ControlCall for ApproveParams
impl ControlCall for ApproveParams
Source§const METHOD: ControlMethod = ControlMethod::PairingApprove
const METHOD: ControlMethod = ControlMethod::PairingApprove
The wire method this call invokes.
Source§type Output = PairingApproveResult
type Output = PairingApproveResult
The typed result this call returns on success.
Source§impl Debug for ApproveParams
impl Debug for ApproveParams
Source§impl<'de> Deserialize<'de> for ApproveParams
impl<'de> Deserialize<'de> for ApproveParams
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
impl Eq for ApproveParams
Source§impl PartialEq for ApproveParams
impl PartialEq for ApproveParams
Source§impl Serialize for ApproveParams
impl Serialize for ApproveParams
impl StructuralPartialEq for ApproveParams
Auto Trait Implementations§
impl Freeze for ApproveParams
impl RefUnwindSafe for ApproveParams
impl Send for ApproveParams
impl Sync for ApproveParams
impl Unpin for ApproveParams
impl UnsafeUnpin for ApproveParams
impl UnwindSafe for ApproveParams
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