pub struct NotesQuery {
pub action: NotesAction,
pub id: Option<String>,
pub moniker: Option<String>,
pub kind: Option<String>,
pub status: Option<String>,
pub title: Option<String>,
pub body: Option<String>,
pub created_by: Option<String>,
pub orphan: Option<bool>,
pub include_done: bool,
}Fields§
§action: NotesAction§id: Option<String>§moniker: Option<String>§kind: Option<String>§status: Option<String>§title: Option<String>§body: Option<String>§created_by: Option<String>§orphan: Option<bool>§include_done: boolTrait Implementations§
Source§impl Clone for NotesQuery
impl Clone for NotesQuery
Source§fn clone(&self) -> NotesQuery
fn clone(&self) -> NotesQuery
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 NotesQuery
impl Debug for NotesQuery
Source§impl<'de> Deserialize<'de> for NotesQuery
impl<'de> Deserialize<'de> for NotesQuery
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
impl Eq for NotesQuery
Source§impl PartialEq for NotesQuery
impl PartialEq for NotesQuery
Source§impl Serialize for NotesQuery
impl Serialize for NotesQuery
impl StructuralPartialEq for NotesQuery
Auto Trait Implementations§
impl Freeze for NotesQuery
impl RefUnwindSafe for NotesQuery
impl Send for NotesQuery
impl Sync for NotesQuery
impl Unpin for NotesQuery
impl UnsafeUnpin for NotesQuery
impl UnwindSafe for NotesQuery
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