pub enum HarnessAuthenticationError {
UnknownHarness(String),
NotInstalled(String),
Unsupported(String),
}Expand description
Failure to construct a truthful native authentication plan.
Variants§
UnknownHarness(String)
The harness id is not in Supercode’s registry.
NotInstalled(String)
The registered native executable is absent.
Unsupported(String)
The requested environment or method has no verified native adapter.
Trait Implementations§
Source§impl Debug for HarnessAuthenticationError
impl Debug for HarnessAuthenticationError
Source§impl Display for HarnessAuthenticationError
impl Display for HarnessAuthenticationError
Source§impl Error for HarnessAuthenticationError
impl Error for HarnessAuthenticationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for HarnessAuthenticationError
impl RefUnwindSafe for HarnessAuthenticationError
impl Send for HarnessAuthenticationError
impl Sync for HarnessAuthenticationError
impl Unpin for HarnessAuthenticationError
impl UnsafeUnpin for HarnessAuthenticationError
impl UnwindSafe for HarnessAuthenticationError
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