pub struct NoteQuery {
pub tags: Option<Vec<String>>,
pub from: Option<String>,
pub to: Option<String>,
pub limit: Option<i64>,
}Expand description
Query parameters for listing notes.
Fields§
§from: Option<String>§to: Option<String>§limit: Option<i64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoteQuery
impl RefUnwindSafe for NoteQuery
impl Send for NoteQuery
impl Sync for NoteQuery
impl Unpin for NoteQuery
impl UnwindSafe for NoteQuery
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