#[repr(u32)]pub enum AuthorityLookupError {
InvalidUrl = 1,
PinnedUrlNotAllowed = 2,
RepositoryNotFound = 3,
PackageNotFound = 4,
UpstreamConnection = 5,
Internal = 6,
}Variants§
InvalidUrl = 1
package_url was not a valid package URL.
PinnedUrlNotAllowed = 2
package_url was pinned, which is not allowed.
RepositoryNotFound = 3
This Authority is not aware of the repository indicated by package_url.
PackageNotFound = 4
The repository indicated by package_url does not contain the indicated package.
UpstreamConnection = 5
This Authority failed to communicate with an upstream authority of its own, so this
Authority does not know if it has the package. Clients may attempt to fallback to a
different authority.
Internal = 6
There was an error with the configuration or operation of this Authority or its
dependencies.
Implementations§
Source§impl AuthorityLookupError
impl AuthorityLookupError
pub fn from_primitive(prim: u32) -> Option<AuthorityLookupError>
pub const fn into_primitive(self) -> u32
Trait Implementations§
Source§impl Clone for AuthorityLookupError
impl Clone for AuthorityLookupError
Source§fn clone(&self) -> AuthorityLookupError
fn clone(&self) -> AuthorityLookupError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AuthorityLookupError
Source§impl Debug for AuthorityLookupError
impl Debug for AuthorityLookupError
Source§impl<D> Decode<AuthorityLookupError, D> for AuthorityLookupErrorwhere
D: ResourceDialect,
impl<D> Decode<AuthorityLookupError, D> for AuthorityLookupErrorwhere
D: ResourceDialect,
Source§fn new_empty() -> AuthorityLookupError
fn new_empty() -> AuthorityLookupError
Creates a valid instance of
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<AuthorityLookupError, D> for AuthorityLookupErrorwhere
D: ResourceDialect,
impl<D> Encode<AuthorityLookupError, D> for AuthorityLookupErrorwhere
D: ResourceDialect,
impl Eq for AuthorityLookupError
Source§impl Hash for AuthorityLookupError
impl Hash for AuthorityLookupError
Source§impl Ord for AuthorityLookupError
impl Ord for AuthorityLookupError
Source§fn cmp(&self, other: &AuthorityLookupError) -> Ordering
fn cmp(&self, other: &AuthorityLookupError) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for AuthorityLookupError
impl PartialEq for AuthorityLookupError
Source§impl PartialOrd for AuthorityLookupError
impl PartialOrd for AuthorityLookupError
impl StructuralPartialEq for AuthorityLookupError
Source§impl TypeMarker for AuthorityLookupError
impl TypeMarker for AuthorityLookupError
Source§type Owned = AuthorityLookupError
type Owned = AuthorityLookupError
The owned Rust type which this FIDL type decodes into.
Source§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.
Source§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.Source§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 moreSource§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.Source§impl ValueTypeMarker for AuthorityLookupError
impl ValueTypeMarker for AuthorityLookupError
Source§type Borrowed<'a> = AuthorityLookupError
type Borrowed<'a> = AuthorityLookupError
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
value: &<AuthorityLookupError as TypeMarker>::Owned,
) -> <AuthorityLookupError as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<AuthorityLookupError as TypeMarker>::Owned, ) -> <AuthorityLookupError as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned to Self::Borrowed.Auto Trait Implementations§
impl Freeze for AuthorityLookupError
impl RefUnwindSafe for AuthorityLookupError
impl Send for AuthorityLookupError
impl Sync for AuthorityLookupError
impl Unpin for AuthorityLookupError
impl UnsafeUnpin for AuthorityLookupError
impl UnwindSafe for AuthorityLookupError
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