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