pub struct FullDepthResponse {
pub code: Option<String>,
pub message: Option<String>,
pub message_detail: Option<String>,
pub success: Option<bool>,
pub data: Option<Box<FullDepthResponseData>>,
}Fields§
§code: Option<String>API response code. "000000" indicates success.
message: Option<String>Response message.
message_detail: Option<String>Detailed response message.
success: Option<bool>Whether request is successful.
data: Option<Box<FullDepthResponseData>>Implementations§
Source§impl FullDepthResponse
impl FullDepthResponse
pub fn new() -> FullDepthResponse
Trait Implementations§
Source§impl Clone for FullDepthResponse
impl Clone for FullDepthResponse
Source§fn clone(&self) -> FullDepthResponse
fn clone(&self) -> FullDepthResponse
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 FullDepthResponse
impl Debug for FullDepthResponse
Source§impl Default for FullDepthResponse
impl Default for FullDepthResponse
Source§fn default() -> FullDepthResponse
fn default() -> FullDepthResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FullDepthResponse
impl<'de> Deserialize<'de> for FullDepthResponse
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 FullDepthResponse
impl PartialEq for FullDepthResponse
Source§impl Serialize for FullDepthResponse
impl Serialize for FullDepthResponse
impl StructuralPartialEq for FullDepthResponse
Auto Trait Implementations§
impl Freeze for FullDepthResponse
impl RefUnwindSafe for FullDepthResponse
impl Send for FullDepthResponse
impl Sync for FullDepthResponse
impl Unpin for FullDepthResponse
impl UnsafeUnpin for FullDepthResponse
impl UnwindSafe for FullDepthResponse
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