Enum ResolveError
#[repr(i32)]pub enum ResolveError {
Internal = 1,
AccessDenied = 2,
Io = 3,
BlobNotFound = 4,
PackageNotFound = 5,
RepoNotFound = 6,
NoSpace = 7,
UnavailableBlob = 8,
UnavailableRepoMetadata = 9,
InvalidUrl = 10,
InvalidContext = 11,
}
Expand description
Error codes for PackageResolver operations.
Variants§
Internal = 1
The resolver encountered an otherwise unspecified error while handling the request.
AccessDenied = 2
The resolver does not have permission to fetch a package blob.
Io = 3
Some unspecified error during I/O.
BlobNotFound = 4
The package blob does not exist.
PackageNotFound = 5
The package does not exist.
RepoNotFound = 6
The resolver does not know about the repo.
NoSpace = 7
There is no space available to store the package or metadata.
The resolver is currently unable to fetch a package blob.
The resolver is currently unable to fetch a repository’s metadata.
InvalidUrl = 10
The package_url
provided to resolver is invalid.
InvalidContext = 11
The context
provided to resolver is invalid.
Implementations§
§impl ResolveError
impl ResolveError
pub fn from_primitive(prim: i32) -> Option<ResolveError>
pub const fn into_primitive(self) -> i32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for ResolveError
impl Clone for ResolveError
§fn clone(&self) -> ResolveError
fn clone(&self) -> ResolveError
Returns a copy 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 more§impl Debug for ResolveError
impl Debug for ResolveError
§impl<D> Decode<ResolveError, D> for ResolveErrorwhere
D: ResourceDialect,
impl<D> Decode<ResolveError, D> for ResolveErrorwhere
D: ResourceDialect,
§fn new_empty() -> ResolveError
fn new_empty() -> ResolveError
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<ResolveError, D> for ResolveErrorwhere
D: ResourceDialect,
impl<D> Encode<ResolveError, D> for ResolveErrorwhere
D: ResourceDialect,
§impl Hash for ResolveError
impl Hash for ResolveError
§impl Ord for ResolveError
impl Ord for ResolveError
§impl PartialEq for ResolveError
impl PartialEq for ResolveError
§impl PartialOrd for ResolveError
impl PartialOrd for ResolveError
§impl TypeMarker for ResolveError
impl TypeMarker for ResolveError
§type Owned = ResolveError
type Owned = ResolveError
The owned Rust type which this FIDL type decodes into.
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for ResolveError
impl ValueTypeMarker for ResolveError
§type Borrowed<'a> = ResolveError
type Borrowed<'a> = ResolveError
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<ResolveError as TypeMarker>::Owned,
) -> <ResolveError as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<ResolveError as TypeMarker>::Owned, ) -> <ResolveError as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for ResolveError
impl Eq for ResolveError
impl StructuralPartialEq for ResolveError
Auto Trait Implementations§
impl Freeze for ResolveError
impl RefUnwindSafe for ResolveError
impl Send for ResolveError
impl Sync for ResolveError
impl Unpin for ResolveError
impl UnwindSafe for ResolveError
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