pub struct TaskListResponse {
pub tasks: Vec<TaskListResponseTasksInner>,
}
Fields§
§tasks: Vec<TaskListResponseTasksInner>
Implementations§
Source§impl TaskListResponse
impl TaskListResponse
pub fn new(tasks: Vec<TaskListResponseTasksInner>) -> TaskListResponse
Trait Implementations§
Source§impl Clone for TaskListResponse
impl Clone for TaskListResponse
Source§fn clone(&self) -> TaskListResponse
fn clone(&self) -> TaskListResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TaskListResponse
impl Debug for TaskListResponse
Source§impl<'de> Deserialize<'de> for TaskListResponse
impl<'de> Deserialize<'de> for TaskListResponse
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 FromStr for TaskListResponse
Converts Query Parameters representation (style=form, explode=false) to a TaskListResponse value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for TaskListResponse
Converts Query Parameters representation (style=form, explode=false) to a TaskListResponse value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for TaskListResponse
impl PartialEq for TaskListResponse
Source§impl Serialize for TaskListResponse
impl Serialize for TaskListResponse
Source§impl ToString for TaskListResponse
Converts the TaskListResponse value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for TaskListResponse
Converts the TaskListResponse value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
impl StructuralPartialEq for TaskListResponse
Auto Trait Implementations§
impl Freeze for TaskListResponse
impl RefUnwindSafe for TaskListResponse
impl Send for TaskListResponse
impl Sync for TaskListResponse
impl Unpin for TaskListResponse
impl UnwindSafe for TaskListResponse
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