pub struct BatchUpdateItem {
pub item_id: String,
pub title: Option<String>,
pub notes: Option<String>,
pub completed: Option<bool>,
pub priority: Option<Priority>,
pub due_date: Option<String>,
}Fields§
§item_id: StringThe unique identifier of the item to update
title: Option<String>New title
notes: Option<String>New notes
completed: Option<bool>Mark completed (reminders only)
priority: Option<Priority>Priority (reminders only)
due_date: Option<String>Due date (reminders only)
Trait Implementations§
Source§impl Debug for BatchUpdateItem
impl Debug for BatchUpdateItem
Source§impl<'de> Deserialize<'de> for BatchUpdateItem
impl<'de> Deserialize<'de> for BatchUpdateItem
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 JsonSchema for BatchUpdateItem
impl JsonSchema for BatchUpdateItem
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for BatchUpdateItem
impl RefUnwindSafe for BatchUpdateItem
impl Send for BatchUpdateItem
impl Sync for BatchUpdateItem
impl Unpin for BatchUpdateItem
impl UnsafeUnpin for BatchUpdateItem
impl UnwindSafe for BatchUpdateItem
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