pub enum GetTimeSeriesMacdExtResponse {
ApiError(Box<ApiError>),
TimeSeriesMacdExt(Box<TimeSeriesMacdExt>),
Text(String),
}Variants§
ApiError(Box<ApiError>)
TimeSeriesMacdExt(Box<TimeSeriesMacdExt>)
Text(String)
String variant for text/* content types (e.g., text/csv, text/plain)
Trait Implementations§
Source§impl Clone for GetTimeSeriesMacdExtResponse
impl Clone for GetTimeSeriesMacdExtResponse
Source§fn clone(&self) -> GetTimeSeriesMacdExtResponse
fn clone(&self) -> GetTimeSeriesMacdExtResponse
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 Debug for GetTimeSeriesMacdExtResponse
impl Debug for GetTimeSeriesMacdExtResponse
Source§impl<'de> Deserialize<'de> for GetTimeSeriesMacdExtResponse
impl<'de> Deserialize<'de> for GetTimeSeriesMacdExtResponse
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 GetTimeSeriesMacdExtResponse
impl PartialEq for GetTimeSeriesMacdExtResponse
Source§fn eq(&self, other: &GetTimeSeriesMacdExtResponse) -> bool
fn eq(&self, other: &GetTimeSeriesMacdExtResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTimeSeriesMacdExtResponse
Auto Trait Implementations§
impl Freeze for GetTimeSeriesMacdExtResponse
impl RefUnwindSafe for GetTimeSeriesMacdExtResponse
impl Send for GetTimeSeriesMacdExtResponse
impl Sync for GetTimeSeriesMacdExtResponse
impl Unpin for GetTimeSeriesMacdExtResponse
impl UnwindSafe for GetTimeSeriesMacdExtResponse
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