pub struct PairingQueue {
pub pending: Option<Vec<PairingView>>,
}Fields§
§pending: Option<Vec<PairingView>>Pending is every unexpired pairing request waiting on an org admin, each carrying the channel, the requesting sender and the code to approve it with.
Implementations§
Source§impl PairingQueue
impl PairingQueue
pub fn new() -> PairingQueue
Trait Implementations§
Source§impl Clone for PairingQueue
impl Clone for PairingQueue
Source§fn clone(&self) -> PairingQueue
fn clone(&self) -> PairingQueue
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 PairingQueue
impl Debug for PairingQueue
Source§impl Default for PairingQueue
impl Default for PairingQueue
Source§fn default() -> PairingQueue
fn default() -> PairingQueue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PairingQueue
impl<'de> Deserialize<'de> for PairingQueue
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 PartialEq for PairingQueue
impl PartialEq for PairingQueue
Source§impl Serialize for PairingQueue
impl Serialize for PairingQueue
impl StructuralPartialEq for PairingQueue
Auto Trait Implementations§
impl Freeze for PairingQueue
impl RefUnwindSafe for PairingQueue
impl Send for PairingQueue
impl Sync for PairingQueue
impl Unpin for PairingQueue
impl UnsafeUnpin for PairingQueue
impl UnwindSafe for PairingQueue
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