pub enum ProductPreflightError {
Manifest(ManifestError),
GrantStore(SandboxGrantStoreError),
}Variants§
Manifest(ManifestError)
GrantStore(SandboxGrantStoreError)
Trait Implementations§
Source§impl Debug for ProductPreflightError
impl Debug for ProductPreflightError
Source§impl Display for ProductPreflightError
impl Display for ProductPreflightError
Source§impl Error for ProductPreflightError
impl Error for ProductPreflightError
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()
Source§impl From<ManifestError> for ProductPreflightError
impl From<ManifestError> for ProductPreflightError
Source§fn from(source: ManifestError) -> Self
fn from(source: ManifestError) -> Self
Converts to this type from the input type.
Source§impl From<SandboxGrantStoreError> for ProductPreflightError
impl From<SandboxGrantStoreError> for ProductPreflightError
Source§fn from(source: SandboxGrantStoreError) -> Self
fn from(source: SandboxGrantStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProductPreflightError
impl RefUnwindSafe for ProductPreflightError
impl Send for ProductPreflightError
impl Sync for ProductPreflightError
impl Unpin for ProductPreflightError
impl UnsafeUnpin for ProductPreflightError
impl UnwindSafe for ProductPreflightError
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