pub enum ApiResponseBody {
JSON(Value),
Text(String),
HTML(String),
Binary(Vec<u8>),
File {
path: String,
filename: String,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ApiResponseBody
impl Clone for ApiResponseBody
Source§fn clone(&self) -> ApiResponseBody
fn clone(&self) -> ApiResponseBody
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 ApiResponseBody
impl Debug for ApiResponseBody
Source§impl<'de> Deserialize<'de> for ApiResponseBody
impl<'de> Deserialize<'de> for ApiResponseBody
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 ApiResponseBody
impl PartialEq for ApiResponseBody
Source§impl Serialize for ApiResponseBody
impl Serialize for ApiResponseBody
impl StructuralPartialEq for ApiResponseBody
Auto Trait Implementations§
impl Freeze for ApiResponseBody
impl RefUnwindSafe for ApiResponseBody
impl Send for ApiResponseBody
impl Sync for ApiResponseBody
impl Unpin for ApiResponseBody
impl UnwindSafe for ApiResponseBody
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