pub struct SearchGetOptions {Show 21 fields
pub query: Option<String>,
pub scope: Option<GetScope>,
pub file_extensions: Option<Vec<String>>,
pub created_at_range: Option<Vec<String>>,
pub updated_at_range: Option<Vec<String>>,
pub size_range: Option<Vec<i64>>,
pub owner_user_ids: Option<Vec<String>>,
pub recent_updater_user_ids: Option<Vec<String>>,
pub ancestor_folder_ids: Option<Vec<String>>,
pub content_types: Option<Vec<GetContentTypes>>,
pub type: Option<GetType>,
pub trash_content: Option<GetTrashContent>,
pub mdfilters: Option<Vec<MetadataFilter>>,
pub sort: Option<GetSort>,
pub direction: Option<GetDirection>,
pub limit: Option<i64>,
pub include_recent_shared_links: Option<bool>,
pub fields: Option<Vec<String>>,
pub offset: Option<i64>,
pub deleted_user_ids: Option<Vec<String>>,
pub deleted_at_range: Option<Vec<String>>,
}Expand description
Optional parameters for SearchManager::get.
Fields§
§query: Option<String>§scope: Option<GetScope>§file_extensions: Option<Vec<String>>§created_at_range: Option<Vec<String>>§updated_at_range: Option<Vec<String>>§size_range: Option<Vec<i64>>§owner_user_ids: Option<Vec<String>>§recent_updater_user_ids: Option<Vec<String>>§ancestor_folder_ids: Option<Vec<String>>§content_types: Option<Vec<GetContentTypes>>§type: Option<GetType>§trash_content: Option<GetTrashContent>§mdfilters: Option<Vec<MetadataFilter>>§sort: Option<GetSort>§direction: Option<GetDirection>§limit: Option<i64>§fields: Option<Vec<String>>§offset: Option<i64>§deleted_user_ids: Option<Vec<String>>§deleted_at_range: Option<Vec<String>>Trait Implementations§
Source§impl Clone for SearchGetOptions
impl Clone for SearchGetOptions
Source§fn clone(&self) -> SearchGetOptions
fn clone(&self) -> SearchGetOptions
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 SearchGetOptions
impl Debug for SearchGetOptions
Source§impl Default for SearchGetOptions
impl Default for SearchGetOptions
Source§fn default() -> SearchGetOptions
fn default() -> SearchGetOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SearchGetOptions
impl RefUnwindSafe for SearchGetOptions
impl Send for SearchGetOptions
impl Sync for SearchGetOptions
impl Unpin for SearchGetOptions
impl UnsafeUnpin for SearchGetOptions
impl UnwindSafe for SearchGetOptions
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