pub enum HelperState {
Answered(Greeting),
Silent(String),
}Expand description
Whether a helper that is present can be used.
Variants§
Answered(Greeting)
It answered the handshake, and this is what it answered.
Silent(String)
It is there and this build could not talk to it, with the reason.
Trait Implementations§
Source§impl Clone for HelperState
impl Clone for HelperState
Source§fn clone(&self) -> HelperState
fn clone(&self) -> HelperState
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 HelperState
impl Debug for HelperState
impl Eq for HelperState
Source§impl PartialEq for HelperState
impl PartialEq for HelperState
impl StructuralPartialEq for HelperState
Auto Trait Implementations§
impl Freeze for HelperState
impl RefUnwindSafe for HelperState
impl Send for HelperState
impl Sync for HelperState
impl Unpin for HelperState
impl UnsafeUnpin for HelperState
impl UnwindSafe for HelperState
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.