pub enum DiscoveryMode {
Disabled,
HtmlLinks,
HtmlAndMetadata,
FullResources,
SitemapOnly,
}Expand description
Runtime discovery mode applied to each downloaded response.
Variants§
Disabled
Disable framework-managed discovery.
HtmlLinks
Discover navigational HTML links only.
HtmlAndMetadata
Discover navigational HTML links and inject page metadata into response metadata.
FullResources
Discover all supported resource types from HTML plus optional metadata.
SitemapOnly
Only process sitemap responses for follow-up URLs.
Trait Implementations§
Source§impl Clone for DiscoveryMode
impl Clone for DiscoveryMode
Source§fn clone(&self) -> DiscoveryMode
fn clone(&self) -> DiscoveryMode
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 DiscoveryMode
impl Debug for DiscoveryMode
Source§impl PartialEq for DiscoveryMode
impl PartialEq for DiscoveryMode
impl Copy for DiscoveryMode
impl Eq for DiscoveryMode
impl StructuralPartialEq for DiscoveryMode
Auto Trait Implementations§
impl Freeze for DiscoveryMode
impl RefUnwindSafe for DiscoveryMode
impl Send for DiscoveryMode
impl Sync for DiscoveryMode
impl Unpin for DiscoveryMode
impl UnsafeUnpin for DiscoveryMode
impl UnwindSafe for DiscoveryMode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.