pub enum LivecrawlOption {
Always,
Fallback,
Never,
Auto,
}Expand description
Livecrawl option for content retrieval
Variants§
Always
Always livecrawl
Fallback
Livecrawl if needed (fallback)
Never
Never livecrawl
Auto
Automatically decide
Trait Implementations§
Source§impl Clone for LivecrawlOption
impl Clone for LivecrawlOption
Source§fn clone(&self) -> LivecrawlOption
fn clone(&self) -> LivecrawlOption
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 LivecrawlOption
impl Debug for LivecrawlOption
Source§impl<'de> Deserialize<'de> for LivecrawlOption
impl<'de> Deserialize<'de> for LivecrawlOption
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
Source§impl PartialEq for LivecrawlOption
impl PartialEq for LivecrawlOption
Source§impl Serialize for LivecrawlOption
impl Serialize for LivecrawlOption
impl Eq for LivecrawlOption
impl StructuralPartialEq for LivecrawlOption
Auto Trait Implementations§
impl Freeze for LivecrawlOption
impl RefUnwindSafe for LivecrawlOption
impl Send for LivecrawlOption
impl Sync for LivecrawlOption
impl Unpin for LivecrawlOption
impl UnsafeUnpin for LivecrawlOption
impl UnwindSafe for LivecrawlOption
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