pub enum HyperError {
ManifestNotFound,
InvalidManifest(String),
BinaryHashMismatch,
SignatureVerificationFailed(String),
UntrustedManufacturer(String),
AisBootstrapFailed(String),
Storage(String),
Config(String),
TemplateVariable(String),
Runtime(String),
Other(Error),
}Variants§
ManifestNotFound
Signed manifest section not found in package
InvalidManifest(String)
Invalid manifest data format
BinaryHashMismatch
binary_hash does not match recomputed result, package has been tampered with
SignatureVerificationFailed(String)
MFR signature verification failed
UntrustedManufacturer(String)
MFR certificate is untrusted (not registered with actrix or revoked)
AisBootstrapFailed(String)
AIS registration bootstrap failed
Storage(String)
Storage layer error
Config(String)
Configuration error
TemplateVariable(String)
Namespace template variable missing
Runtime(String)
Runtime management error (spawn failure, process crash, etc.)
Other(Error)
Trait Implementations§
Source§impl Debug for HyperError
impl Debug for HyperError
Source§impl Display for HyperError
impl Display for HyperError
Source§impl Error for HyperError
impl Error for HyperError
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 HyperError
impl RefUnwindSafe for HyperError
impl Send for HyperError
impl Sync for HyperError
impl Unpin for HyperError
impl UnsafeUnpin for HyperError
impl UnwindSafe for HyperError
Blanket Implementations§
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
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 moreimpl<T> MaybeSendSync for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.