pub enum GrokWebBillingError {
EmptyResponse,
ParseFailed,
RpcFailed {
status: i32,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for GrokWebBillingError
impl Clone for GrokWebBillingError
Source§fn clone(&self) -> GrokWebBillingError
fn clone(&self) -> GrokWebBillingError
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 moreSource§impl Debug for GrokWebBillingError
impl Debug for GrokWebBillingError
Source§impl Display for GrokWebBillingError
impl Display for GrokWebBillingError
impl Eq for GrokWebBillingError
Source§impl Error for GrokWebBillingError
impl Error for GrokWebBillingError
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 GrokWebBillingError
impl PartialEq for GrokWebBillingError
Source§fn eq(&self, other: &GrokWebBillingError) -> bool
fn eq(&self, other: &GrokWebBillingError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GrokWebBillingError
Auto Trait Implementations§
impl Freeze for GrokWebBillingError
impl RefUnwindSafe for GrokWebBillingError
impl Send for GrokWebBillingError
impl Sync for GrokWebBillingError
impl Unpin for GrokWebBillingError
impl UnsafeUnpin for GrokWebBillingError
impl UnwindSafe for GrokWebBillingError
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