pub struct LeaseTasksResponse {
pub tasks: Option<Vec<Task>>,
}Expand description
Response message for leasing tasks using LeaseTasks.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations queues tasks lease projects (response)
Fields§
§tasks: Option<Vec<Task>>The leased tasks.
Trait Implementations§
Source§impl Clone for LeaseTasksResponse
impl Clone for LeaseTasksResponse
Source§fn clone(&self) -> LeaseTasksResponse
fn clone(&self) -> LeaseTasksResponse
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 LeaseTasksResponse
impl Debug for LeaseTasksResponse
Source§impl Default for LeaseTasksResponse
impl Default for LeaseTasksResponse
Source§fn default() -> LeaseTasksResponse
fn default() -> LeaseTasksResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeaseTasksResponse
impl<'de> Deserialize<'de> for LeaseTasksResponse
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 Serialize for LeaseTasksResponse
impl Serialize for LeaseTasksResponse
impl ResponseResult for LeaseTasksResponse
Auto Trait Implementations§
impl Freeze for LeaseTasksResponse
impl RefUnwindSafe for LeaseTasksResponse
impl Send for LeaseTasksResponse
impl Sync for LeaseTasksResponse
impl Unpin for LeaseTasksResponse
impl UnwindSafe for LeaseTasksResponse
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