pub struct BlockchainNotFoundErrorResponse {
pub message: String,
pub code: f64,
}
Fields§
§message: String
Not found error code
code: f64
Error code
Implementations§
Source§impl BlockchainNotFoundErrorResponse
impl BlockchainNotFoundErrorResponse
pub fn new(message: String, code: f64) -> BlockchainNotFoundErrorResponse
Trait Implementations§
Source§impl Clone for BlockchainNotFoundErrorResponse
impl Clone for BlockchainNotFoundErrorResponse
Source§fn clone(&self) -> BlockchainNotFoundErrorResponse
fn clone(&self) -> BlockchainNotFoundErrorResponse
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 Default for BlockchainNotFoundErrorResponse
impl Default for BlockchainNotFoundErrorResponse
Source§fn default() -> BlockchainNotFoundErrorResponse
fn default() -> BlockchainNotFoundErrorResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlockchainNotFoundErrorResponse
impl<'de> Deserialize<'de> for BlockchainNotFoundErrorResponse
Source§fn 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
Source§impl PartialEq for BlockchainNotFoundErrorResponse
impl PartialEq for BlockchainNotFoundErrorResponse
Source§fn eq(&self, other: &BlockchainNotFoundErrorResponse) -> bool
fn eq(&self, other: &BlockchainNotFoundErrorResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BlockchainNotFoundErrorResponse
Auto Trait Implementations§
impl Freeze for BlockchainNotFoundErrorResponse
impl RefUnwindSafe for BlockchainNotFoundErrorResponse
impl Send for BlockchainNotFoundErrorResponse
impl Sync for BlockchainNotFoundErrorResponse
impl Unpin for BlockchainNotFoundErrorResponse
impl UnwindSafe for BlockchainNotFoundErrorResponse
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