pub enum PackFetcherLogDetailsType {
Fetcher,
}
Expand description
PackFetcherLogDetailsType
JSON schema
{
"type": "string",
"enum": [
"fetcher"
],
"x-tsType": "PackLogType.Fetcher"
}
Variants§
Fetcher
Trait Implementations§
Source§impl Clone for PackFetcherLogDetailsType
impl Clone for PackFetcherLogDetailsType
Source§fn clone(&self) -> PackFetcherLogDetailsType
fn clone(&self) -> PackFetcherLogDetailsType
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 PackFetcherLogDetailsType
impl Debug for PackFetcherLogDetailsType
Source§impl<'de> Deserialize<'de> for PackFetcherLogDetailsType
impl<'de> Deserialize<'de> for PackFetcherLogDetailsType
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 Display for PackFetcherLogDetailsType
impl Display for PackFetcherLogDetailsType
Source§impl From<&PackFetcherLogDetailsType> for PackFetcherLogDetailsType
impl From<&PackFetcherLogDetailsType> for PackFetcherLogDetailsType
Source§fn from(value: &PackFetcherLogDetailsType) -> Self
fn from(value: &PackFetcherLogDetailsType) -> Self
Converts to this type from the input type.
Source§impl FromStr for PackFetcherLogDetailsType
impl FromStr for PackFetcherLogDetailsType
Source§impl Hash for PackFetcherLogDetailsType
impl Hash for PackFetcherLogDetailsType
Source§impl Ord for PackFetcherLogDetailsType
impl Ord for PackFetcherLogDetailsType
Source§fn cmp(&self, other: &PackFetcherLogDetailsType) -> Ordering
fn cmp(&self, other: &PackFetcherLogDetailsType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for PackFetcherLogDetailsType
impl PartialOrd for PackFetcherLogDetailsType
Source§impl TryFrom<&String> for PackFetcherLogDetailsType
impl TryFrom<&String> for PackFetcherLogDetailsType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PackFetcherLogDetailsType
impl TryFrom<&str> for PackFetcherLogDetailsType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PackFetcherLogDetailsType
impl TryFrom<String> for PackFetcherLogDetailsType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for PackFetcherLogDetailsType
impl Eq for PackFetcherLogDetailsType
impl StructuralPartialEq for PackFetcherLogDetailsType
Auto Trait Implementations§
impl Freeze for PackFetcherLogDetailsType
impl RefUnwindSafe for PackFetcherLogDetailsType
impl Send for PackFetcherLogDetailsType
impl Sync for PackFetcherLogDetailsType
impl Unpin for PackFetcherLogDetailsType
impl UnwindSafe for PackFetcherLogDetailsType
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.