pub enum GetEtfResponse {
ApiError(Box<ApiError>),
Etf(Box<Etf>),
Text(String),
}Variants§
ApiError(Box<ApiError>)
Etf(Box<Etf>)
Text(String)
String variant for text/* content types (e.g., text/csv, text/plain)
Trait Implementations§
Source§impl Clone for GetEtfResponse
impl Clone for GetEtfResponse
Source§fn clone(&self) -> GetEtfResponse
fn clone(&self) -> GetEtfResponse
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 GetEtfResponse
impl Debug for GetEtfResponse
Source§impl Default for GetEtfResponse
impl Default for GetEtfResponse
Source§impl<'de> Deserialize<'de> for GetEtfResponse
impl<'de> Deserialize<'de> for GetEtfResponse
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 GetEtfResponse
impl PartialEq for GetEtfResponse
Source§impl Serialize for GetEtfResponse
impl Serialize for GetEtfResponse
impl StructuralPartialEq for GetEtfResponse
Auto Trait Implementations§
impl Freeze for GetEtfResponse
impl RefUnwindSafe for GetEtfResponse
impl Send for GetEtfResponse
impl Sync for GetEtfResponse
impl Unpin for GetEtfResponse
impl UnwindSafe for GetEtfResponse
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