pub struct AddRemindersResponse {
pub task_guid: String,
pub reminders: Vec<TaskReminder>,
}Expand description
添加任务提醒响应
Fields§
§task_guid: String任务 GUID
reminders: Vec<TaskReminder>添加的提醒列表
Trait Implementations§
Source§impl ApiResponseTrait for AddRemindersResponse
impl ApiResponseTrait for AddRemindersResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for AddRemindersResponse
impl Clone for AddRemindersResponse
Source§fn clone(&self) -> AddRemindersResponse
fn clone(&self) -> AddRemindersResponse
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 AddRemindersResponse
impl Debug for AddRemindersResponse
Source§impl<'de> Deserialize<'de> for AddRemindersResponse
impl<'de> Deserialize<'de> for AddRemindersResponse
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 AddRemindersResponse
impl RefUnwindSafe for AddRemindersResponse
impl Send for AddRemindersResponse
impl Sync for AddRemindersResponse
impl Unpin for AddRemindersResponse
impl UnsafeUnpin for AddRemindersResponse
impl UnwindSafe for AddRemindersResponse
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