#[repr(u8)]pub enum BindResult {
Success = 0,
AccessDenied = 1,
ServiceTypeNotSupported = 2,
VersionNotSupported = 3,
}Expand description
Result of a Bind operation.
Variants§
Success = 0
Bind succeeded.
AccessDenied = 1
Responder denied access (bad credentials).
ServiceTypeNotSupported = 2
The requested service type is not available.
VersionNotSupported = 3
The requested protocol version is not supported.
Implementations§
Trait Implementations§
Source§impl Clone for BindResult
impl Clone for BindResult
Source§fn clone(&self) -> BindResult
fn clone(&self) -> BindResult
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 BindResult
impl Debug for BindResult
Source§impl PartialEq for BindResult
impl PartialEq for BindResult
impl Copy for BindResult
impl Eq for BindResult
impl StructuralPartialEq for BindResult
Auto Trait Implementations§
impl Freeze for BindResult
impl RefUnwindSafe for BindResult
impl Send for BindResult
impl Sync for BindResult
impl Unpin for BindResult
impl UnsafeUnpin for BindResult
impl UnwindSafe for BindResult
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