pub struct SearchNotesParams {
pub query: String,
pub parentnoteid: Option<String>,
pub reviewstate: Option<String>,
pub page: Option<f64>,
pub hitsperpage: Option<f64>,
pub lasteditedafter: Option<String>,
pub includearchived: Option<bool>,
}Expand description
Parameters for SliteClient::search_notes.
Fields§
§query: String§parentnoteid: Option<String>§reviewstate: Option<String>§page: Option<f64>§hitsperpage: Option<f64>§lasteditedafter: Option<String>§includearchived: Option<bool>Trait Implementations§
Source§impl Clone for SearchNotesParams
impl Clone for SearchNotesParams
Source§fn clone(&self) -> SearchNotesParams
fn clone(&self) -> SearchNotesParams
Returns a duplicate of the value. Read more
1.0.0 · 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 SearchNotesParams
impl Debug for SearchNotesParams
Source§impl<'de> Deserialize<'de> for SearchNotesParams
impl<'de> Deserialize<'de> for SearchNotesParams
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 SearchNotesParams
impl RefUnwindSafe for SearchNotesParams
impl Send for SearchNotesParams
impl Sync for SearchNotesParams
impl Unpin for SearchNotesParams
impl UnsafeUnpin for SearchNotesParams
impl UnwindSafe for SearchNotesParams
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