pub struct Response<T> {
pub status: bool,
pub message: String,
pub data: Option<T>,
pub meta: Option<Meta>,
pub response_type: Option<String>,
pub code: Option<String>,
}
Expand description
Generic response body template for the API
Fields§
§status: bool
This lets you know if your request was successful or not.
message: String
This is a summary of the response and its status.
data: Option<T>
This contains the result of your request
meta: Option<Meta>
This contains meta data object
response_type: Option<String>
§code: Option<String>
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for Response<T>where
T: Deserialize<'de> + Default,
impl<'de, T> Deserialize<'de> for Response<T>where
T: Deserialize<'de> + Default,
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
Auto Trait Implementations§
impl<T> Freeze for Response<T>where
T: Freeze,
impl<T> RefUnwindSafe for Response<T>where
T: RefUnwindSafe,
impl<T> Send for Response<T>where
T: Send,
impl<T> Sync for Response<T>where
T: Sync,
impl<T> Unpin for Response<T>where
T: Unpin,
impl<T> UnwindSafe for Response<T>where
T: UnwindSafe,
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