pub struct AddTasklistResponse {
pub task_guid: String,
pub tasklist_guid: String,
pub section_guid: Option<String>,
}Expand description
任务加入清单响应
Fields§
§task_guid: String任务 GUID
tasklist_guid: String任务清单 GUID
section_guid: Option<String>分组 GUID
Trait Implementations§
Source§impl ApiResponseTrait for AddTasklistResponse
impl ApiResponseTrait for AddTasklistResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for AddTasklistResponse
impl Clone for AddTasklistResponse
Source§fn clone(&self) -> AddTasklistResponse
fn clone(&self) -> AddTasklistResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddTasklistResponse
impl Debug for AddTasklistResponse
Source§impl<'de> Deserialize<'de> for AddTasklistResponse
impl<'de> Deserialize<'de> for AddTasklistResponse
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 Freeze for AddTasklistResponse
impl RefUnwindSafe for AddTasklistResponse
impl Send for AddTasklistResponse
impl Sync for AddTasklistResponse
impl Unpin for AddTasklistResponse
impl UnsafeUnpin for AddTasklistResponse
impl UnwindSafe for AddTasklistResponse
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