#[non_exhaustive]pub enum BuildIdError {
Empty,
TooLong {
length: usize,
maximum: usize,
},
OddHexLength {
length: usize,
},
InvalidHex {
index: usize,
byte: u8,
},
}Expand description
Build identifier validation error.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Empty
Build identifiers used as cache keys may not be empty.
TooLong
The encoded identifier would exceed the filesystem component limit.
OddHexLength
A hexadecimal representation contains an incomplete byte.
InvalidHex
A hexadecimal representation contains a non-hexadecimal byte.
Trait Implementations§
Source§impl Clone for BuildIdError
impl Clone for BuildIdError
Source§fn clone(&self) -> BuildIdError
fn clone(&self) -> BuildIdError
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 BuildIdError
Source§impl Debug for BuildIdError
impl Debug for BuildIdError
Source§impl Display for BuildIdError
impl Display for BuildIdError
impl Eq for BuildIdError
Source§impl Error for BuildIdError
impl Error for BuildIdError
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()
Source§impl PartialEq for BuildIdError
impl PartialEq for BuildIdError
Source§fn eq(&self, other: &BuildIdError) -> bool
fn eq(&self, other: &BuildIdError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BuildIdError
Auto Trait Implementations§
impl Freeze for BuildIdError
impl RefUnwindSafe for BuildIdError
impl Send for BuildIdError
impl Sync for BuildIdError
impl Unpin for BuildIdError
impl UnsafeUnpin for BuildIdError
impl UnwindSafe for BuildIdError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more