#[non_exhaustive]pub enum WebFetchToolName {
WebFetch,
}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.
WebFetch
Trait Implementations§
Source§impl Clone for WebFetchToolName
impl Clone for WebFetchToolName
Source§fn clone(&self) -> WebFetchToolName
fn clone(&self) -> WebFetchToolName
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 WebFetchToolName
impl Debug for WebFetchToolName
Source§impl<'de> Deserialize<'de> for WebFetchToolName
impl<'de> Deserialize<'de> for WebFetchToolName
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
impl Eq for WebFetchToolName
Source§impl PartialEq for WebFetchToolName
impl PartialEq for WebFetchToolName
Source§impl Serialize for WebFetchToolName
impl Serialize for WebFetchToolName
impl StructuralPartialEq for WebFetchToolName
Auto Trait Implementations§
impl Freeze for WebFetchToolName
impl RefUnwindSafe for WebFetchToolName
impl Send for WebFetchToolName
impl Sync for WebFetchToolName
impl Unpin for WebFetchToolName
impl UnsafeUnpin for WebFetchToolName
impl UnwindSafe for WebFetchToolName
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