pub enum TypesError {
NotReady,
RegistrationFailed(String),
Internal(String),
}Expand description
Errors that can be returned by the TypesClient.
Variants§
NotReady
Core types are not yet registered.
RegistrationFailed(String)
Failed to register core types.
Internal(String)
An internal error occurred.
Implementations§
Source§impl TypesError
impl TypesError
Sourcepub fn registration_failed(message: impl Into<String>) -> Self
pub fn registration_failed(message: impl Into<String>) -> Self
Creates a RegistrationFailed error.
Sourcepub const fn is_not_ready(&self) -> bool
pub const fn is_not_ready(&self) -> bool
Returns true if this is a not ready error.
Sourcepub const fn is_registration_failed(&self) -> bool
pub const fn is_registration_failed(&self) -> bool
Returns true if this is a registration failed error.
Trait Implementations§
Source§impl Clone for TypesError
impl Clone for TypesError
Source§fn clone(&self) -> TypesError
fn clone(&self) -> TypesError
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 TypesError
impl Debug for TypesError
Source§impl Display for TypesError
impl Display for TypesError
Source§impl Error for TypesError
impl Error for TypesError
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()
Auto Trait Implementations§
impl Freeze for TypesError
impl RefUnwindSafe for TypesError
impl Send for TypesError
impl Sync for TypesError
impl Unpin for TypesError
impl UnsafeUnpin for TypesError
impl UnwindSafe for TypesError
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