pub struct PollParams {
pub pairing_id: String,
}Expand description
pairing.poll params (OPEN — no token).
Fields§
§pairing_id: StringThe pairing id to poll.
Trait Implementations§
Source§impl Clone for PollParams
impl Clone for PollParams
Source§fn clone(&self) -> PollParams
fn clone(&self) -> PollParams
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 PollParams
impl ControlCall for PollParams
Source§const METHOD: ControlMethod = ControlMethod::PairingPoll
const METHOD: ControlMethod = ControlMethod::PairingPoll
The wire method this call invokes.
Source§type Output = PairingPollResult
type Output = PairingPollResult
The typed result this call returns on success.
Source§impl Debug for PollParams
impl Debug for PollParams
Source§impl<'de> Deserialize<'de> for PollParams
impl<'de> Deserialize<'de> for PollParams
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 PollParams
Source§impl PartialEq for PollParams
impl PartialEq for PollParams
Source§impl Serialize for PollParams
impl Serialize for PollParams
impl StructuralPartialEq for PollParams
Auto Trait Implementations§
impl Freeze for PollParams
impl RefUnwindSafe for PollParams
impl Send for PollParams
impl Sync for PollParams
impl Unpin for PollParams
impl UnsafeUnpin for PollParams
impl UnwindSafe for PollParams
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