pub enum ListCertificateAuthoritiesError {
InvalidNextToken(String),
}
Expand description
Errors returned by ListCertificateAuthorities
Variants§
InvalidNextToken(String)
The token specified in the NextToken
argument is not valid. Use the token returned from your previous call to ListCertificateAuthorities.
Implementations§
Trait Implementations§
Source§impl Error for ListCertificateAuthoritiesError
impl Error for ListCertificateAuthoritiesError
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 ListCertificateAuthoritiesError
impl PartialEq for ListCertificateAuthoritiesError
Source§fn eq(&self, other: &ListCertificateAuthoritiesError) -> bool
fn eq(&self, other: &ListCertificateAuthoritiesError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListCertificateAuthoritiesError
Auto Trait Implementations§
impl Freeze for ListCertificateAuthoritiesError
impl RefUnwindSafe for ListCertificateAuthoritiesError
impl Send for ListCertificateAuthoritiesError
impl Sync for ListCertificateAuthoritiesError
impl Unpin for ListCertificateAuthoritiesError
impl UnwindSafe for ListCertificateAuthoritiesError
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