pub struct WebdataQuery {
pub filename: Option<String>,
pub filetype: Option<String>,
pub collection: Option<u64>,
pub crawl: Option<u64>,
pub crawl_time_after: Option<String>,
pub crawl_time_before: Option<String>,
pub crawl_start_after: Option<String>,
pub crawl_start_before: Option<String>,
pub page: Option<u32>,
pub page_size: Option<u32>,
}Fields§
§filename: Option<String>§filetype: Option<String>§collection: Option<u64>§crawl: Option<u64>§crawl_time_after: Option<String>§crawl_time_before: Option<String>§crawl_start_after: Option<String>§crawl_start_before: Option<String>§page: Option<u32>§page_size: Option<u32>Trait Implementations§
Source§impl Clone for WebdataQuery
impl Clone for WebdataQuery
Source§fn clone(&self) -> WebdataQuery
fn clone(&self) -> WebdataQuery
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 WebdataQuery
impl Debug for WebdataQuery
Source§impl Default for WebdataQuery
impl Default for WebdataQuery
Auto Trait Implementations§
impl Freeze for WebdataQuery
impl RefUnwindSafe for WebdataQuery
impl Send for WebdataQuery
impl Sync for WebdataQuery
impl Unpin for WebdataQuery
impl UnsafeUnpin for WebdataQuery
impl UnwindSafe for WebdataQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.