pub struct HighlightsContentsOptions {
pub num_sentences: Option<u32>,
pub highlights_per_url: Option<u32>,
pub query: Option<String>,
}Expand description
Options for highlight content retrieval
Fields§
§num_sentences: Option<u32>Number of sentences per highlight
highlights_per_url: Option<u32>Number of highlights per URL
query: Option<String>Query for highlights
Trait Implementations§
Source§impl Clone for HighlightsContentsOptions
impl Clone for HighlightsContentsOptions
Source§fn clone(&self) -> HighlightsContentsOptions
fn clone(&self) -> HighlightsContentsOptions
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 HighlightsContentsOptions
impl Debug for HighlightsContentsOptions
Source§impl Default for HighlightsContentsOptions
impl Default for HighlightsContentsOptions
Source§fn default() -> HighlightsContentsOptions
fn default() -> HighlightsContentsOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HighlightsContentsOptions
impl<'de> Deserialize<'de> for HighlightsContentsOptions
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 HighlightsContentsOptions
impl RefUnwindSafe for HighlightsContentsOptions
impl Send for HighlightsContentsOptions
impl Sync for HighlightsContentsOptions
impl Unpin for HighlightsContentsOptions
impl UnsafeUnpin for HighlightsContentsOptions
impl UnwindSafe for HighlightsContentsOptions
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