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