pub enum WorkloadIdentityError {
EmptyRuntimeIdentity,
EmptyUri,
UnsupportedScheme(String),
MalformedUri(String),
MissingTrustDomain,
InvalidAuthority,
InvalidSuffix,
InvalidPath(String),
Conflict {
field: &'static str,
expected: String,
actual: String,
},
OpaqueRuntimeIdentityConflict(String),
}Variants§
EmptyRuntimeIdentity
EmptyUri
UnsupportedScheme(String)
MalformedUri(String)
MissingTrustDomain
InvalidAuthority
InvalidSuffix
InvalidPath(String)
Conflict
OpaqueRuntimeIdentityConflict(String)
Trait Implementations§
Source§impl Clone for WorkloadIdentityError
impl Clone for WorkloadIdentityError
Source§fn clone(&self) -> WorkloadIdentityError
fn clone(&self) -> WorkloadIdentityError
Returns a duplicate 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 moreSource§impl Debug for WorkloadIdentityError
impl Debug for WorkloadIdentityError
Source§impl Display for WorkloadIdentityError
impl Display for WorkloadIdentityError
Source§impl Error for WorkloadIdentityError
impl Error for WorkloadIdentityError
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 WorkloadIdentityError
impl PartialEq for WorkloadIdentityError
impl Eq for WorkloadIdentityError
impl StructuralPartialEq for WorkloadIdentityError
Auto Trait Implementations§
impl Freeze for WorkloadIdentityError
impl RefUnwindSafe for WorkloadIdentityError
impl Send for WorkloadIdentityError
impl Sync for WorkloadIdentityError
impl Unpin for WorkloadIdentityError
impl UnsafeUnpin for WorkloadIdentityError
impl UnwindSafe for WorkloadIdentityError
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