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