pub enum JoinerJoinProgress {
OfferReceived(DeviceJoinOffer),
AccessRequested(DeviceProviderAccessRequest),
ApprovalReceived(DeviceProviderAdmissionApproval),
RegistrationPrepared(DeviceRegistrationRequest),
Ready(DeviceJoinReadiness),
ActivationObserved {
readiness: DeviceJoinReadiness,
activation: DeviceJoinActivation,
},
}Variants§
OfferReceived(DeviceJoinOffer)
AccessRequested(DeviceProviderAccessRequest)
ApprovalReceived(DeviceProviderAdmissionApproval)
RegistrationPrepared(DeviceRegistrationRequest)
Ready(DeviceJoinReadiness)
ActivationObserved
Trait Implementations§
Source§impl Clone for JoinerJoinProgress
impl Clone for JoinerJoinProgress
Source§fn clone(&self) -> JoinerJoinProgress
fn clone(&self) -> JoinerJoinProgress
Returns a duplicate of the value. Read more
1.0.0 · 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 JoinerJoinProgress
impl Debug for JoinerJoinProgress
Source§impl<'de> Deserialize<'de> for JoinerJoinProgress
impl<'de> Deserialize<'de> for JoinerJoinProgress
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 DeviceJoinRoleProgressKind for JoinerJoinProgress
impl DeviceJoinRoleProgressKind for JoinerJoinProgress
const ROLE: DeviceJoinRole = DeviceJoinRole::Joiner
Source§impl From<JoinerJoinProgress> for DeviceJoinRoleProgress
impl From<JoinerJoinProgress> for DeviceJoinRoleProgress
Source§fn from(progress: JoinerJoinProgress) -> Self
fn from(progress: JoinerJoinProgress) -> Self
Converts to this type from the input type.
Source§impl PartialEq for JoinerJoinProgress
impl PartialEq for JoinerJoinProgress
Source§impl Serialize for JoinerJoinProgress
impl Serialize for JoinerJoinProgress
impl Eq for JoinerJoinProgress
impl StructuralPartialEq for JoinerJoinProgress
Auto Trait Implementations§
impl !Freeze for JoinerJoinProgress
impl RefUnwindSafe for JoinerJoinProgress
impl Send for JoinerJoinProgress
impl Sync for JoinerJoinProgress
impl Unpin for JoinerJoinProgress
impl UnsafeUnpin for JoinerJoinProgress
impl UnwindSafe for JoinerJoinProgress
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.