pub enum NegotiationResult {
Accepted {
agreed_capabilities: Vec<String>,
rejected_optional: Vec<String>,
},
Rejected {
reason: String,
missing_required: Vec<String>,
},
}Expand description
Outcome of a capability negotiation attempt.
Variants§
Accepted
Negotiation succeeded; the listed capability names are mutually supported.
Fields
Rejected
Negotiation failed; the connection should be closed.
Implementations§
Source§impl NegotiationResult
impl NegotiationResult
Sourcepub fn is_accepted(&self) -> bool
pub fn is_accepted(&self) -> bool
Returns true if the result is NegotiationResult::Accepted.
Sourcepub fn is_rejected(&self) -> bool
pub fn is_rejected(&self) -> bool
Returns true if the result is NegotiationResult::Rejected.
Sourcepub fn agreed_capabilities(&self) -> &[String]
pub fn agreed_capabilities(&self) -> &[String]
Returns the agreed capability names, or an empty slice if rejected.
Sourcepub fn rejection_reason(&self) -> Option<&str>
pub fn rejection_reason(&self) -> Option<&str>
Returns the rejection reason, or None if accepted.
Trait Implementations§
Source§impl Clone for NegotiationResult
impl Clone for NegotiationResult
Source§fn clone(&self) -> NegotiationResult
fn clone(&self) -> NegotiationResult
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 NegotiationResult
impl Debug for NegotiationResult
Source§impl PartialEq for NegotiationResult
impl PartialEq for NegotiationResult
Source§fn eq(&self, other: &NegotiationResult) -> bool
fn eq(&self, other: &NegotiationResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NegotiationResult
Auto Trait Implementations§
impl Freeze for NegotiationResult
impl RefUnwindSafe for NegotiationResult
impl Send for NegotiationResult
impl Sync for NegotiationResult
impl Unpin for NegotiationResult
impl UnsafeUnpin for NegotiationResult
impl UnwindSafe for NegotiationResult
Blanket Implementations§
impl<T> Allocation for T
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more