pub struct FeesEstimateError {
pub _type: String,
pub code: String,
pub message: String,
pub detail: Vec<Value>,
}Expand description
FeesEstimateError : An unexpected error occurred during this operation.
Fields
_type: StringAn error type, identifying either the receiver or the sender as the originator of the error.
code: StringAn error code that identifies the type of error that occurred.
message: StringA message that describes the error condition.
detail: Vec<Value>Additional information that can help the caller understand or fix the issue.
Implementations
Trait Implementations
sourceimpl Clone for FeesEstimateError
impl Clone for FeesEstimateError
sourcefn clone(&self) -> FeesEstimateError
fn clone(&self) -> FeesEstimateError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FeesEstimateError
impl Debug for FeesEstimateError
sourceimpl Default for FeesEstimateError
impl Default for FeesEstimateError
sourcefn default() -> FeesEstimateError
fn default() -> FeesEstimateError
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FeesEstimateError
impl<'de> Deserialize<'de> for FeesEstimateError
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<FeesEstimateError> for FeesEstimateError
impl PartialEq<FeesEstimateError> for FeesEstimateError
sourcefn eq(&self, other: &FeesEstimateError) -> bool
fn eq(&self, other: &FeesEstimateError) -> bool
sourceimpl Serialize for FeesEstimateError
impl Serialize for FeesEstimateError
impl StructuralPartialEq for FeesEstimateError
Auto Trait Implementations
impl RefUnwindSafe for FeesEstimateError
impl Send for FeesEstimateError
impl Sync for FeesEstimateError
impl Unpin for FeesEstimateError
impl UnwindSafe for FeesEstimateError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more