pub struct ListRemindersRequest {
pub show_completed: bool,
pub list_name: Option<String>,
}Fields§
§show_completed: boolIf true, show all reminders including completed ones. Default: false
list_name: Option<String>Optional: Filter to a specific reminder list by name
Trait Implementations§
Source§impl Debug for ListRemindersRequest
impl Debug for ListRemindersRequest
Source§impl Default for ListRemindersRequest
impl Default for ListRemindersRequest
Source§fn default() -> ListRemindersRequest
fn default() -> ListRemindersRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRemindersRequest
impl<'de> Deserialize<'de> for ListRemindersRequest
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 ListRemindersRequest
impl JsonSchema for ListRemindersRequest
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 ListRemindersRequest
impl RefUnwindSafe for ListRemindersRequest
impl Send for ListRemindersRequest
impl Sync for ListRemindersRequest
impl Unpin for ListRemindersRequest
impl UnsafeUnpin for ListRemindersRequest
impl UnwindSafe for ListRemindersRequest
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