#[non_exhaustive]pub enum WebFetchTool {
WebFetch20250910(WebFetchTool20250910),
WebFetch20260209(WebFetchTool20260209),
WebFetch20260309(WebFetchTool20260309),
WebFetch20260318(WebFetchTool20260318),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
WebFetch20250910(WebFetchTool20250910)
WebFetch20260209(WebFetchTool20260209)
WebFetch20260309(WebFetchTool20260309)
WebFetch20260318(WebFetchTool20260318)
Trait Implementations§
Source§impl Clone for WebFetchTool
impl Clone for WebFetchTool
Source§fn clone(&self) -> WebFetchTool
fn clone(&self) -> WebFetchTool
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 WebFetchTool
impl Debug for WebFetchTool
Source§impl<'de> Deserialize<'de> for WebFetchTool
impl<'de> Deserialize<'de> for WebFetchTool
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 WebFetchTool
impl PartialEq for WebFetchTool
Source§impl Serialize for WebFetchTool
impl Serialize for WebFetchTool
impl StructuralPartialEq for WebFetchTool
Auto Trait Implementations§
impl Freeze for WebFetchTool
impl RefUnwindSafe for WebFetchTool
impl Send for WebFetchTool
impl Sync for WebFetchTool
impl Unpin for WebFetchTool
impl UnsafeUnpin for WebFetchTool
impl UnwindSafe for WebFetchTool
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