pub struct PairingPollResult {
pub status: String,
pub token: Option<String>,
}Expand description
pairing.poll — the pairing poll outcome (OPEN, no token).
Fields§
§status: StringThe pairing status ("pending" / "approved" / …).
token: Option<String>The minted scoped token, present exactly once after approval.
Trait Implementations§
Source§impl Clone for PairingPollResult
impl Clone for PairingPollResult
Source§fn clone(&self) -> PairingPollResult
fn clone(&self) -> PairingPollResult
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 PairingPollResult
impl Debug for PairingPollResult
Source§impl<'de> Deserialize<'de> for PairingPollResult
impl<'de> Deserialize<'de> for PairingPollResult
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 PairingPollResult
Source§impl PartialEq for PairingPollResult
impl PartialEq for PairingPollResult
Source§impl Serialize for PairingPollResult
impl Serialize for PairingPollResult
impl StructuralPartialEq for PairingPollResult
Auto Trait Implementations§
impl Freeze for PairingPollResult
impl RefUnwindSafe for PairingPollResult
impl Send for PairingPollResult
impl Sync for PairingPollResult
impl Unpin for PairingPollResult
impl UnsafeUnpin for PairingPollResult
impl UnwindSafe for PairingPollResult
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