pub enum NetworkReportPhases {
DNS,
Connections,
Application,
Other(String),
}
Expand description
Describes which phase the error occurred in.
Variants§
DNS
The error occurred during DNS resolution.
Connections
The error occurred during secure connection establishment.
Application
The error occurred during the transmission of request and response .
Other(String)
For forward-compatibility.
Implementations§
Trait Implementations§
source§impl AsRef<str> for NetworkReportPhases
impl AsRef<str> for NetworkReportPhases
source§impl Clone for NetworkReportPhases
impl Clone for NetworkReportPhases
source§fn clone(&self) -> NetworkReportPhases
fn clone(&self) -> NetworkReportPhases
Returns a copy 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 NetworkReportPhases
impl Debug for NetworkReportPhases
source§impl<'de> Deserialize<'de> for NetworkReportPhases
impl<'de> Deserialize<'de> for NetworkReportPhases
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 NetworkReportPhases
impl Display for NetworkReportPhases
source§impl Empty for NetworkReportPhases
impl Empty for NetworkReportPhases
source§impl FromStr for NetworkReportPhases
impl FromStr for NetworkReportPhases
source§impl FromValue for NetworkReportPhases
impl FromValue for NetworkReportPhases
source§fn from_value(value: Annotated<Value>) -> Annotated<Self>
fn from_value(value: Annotated<Value>) -> Annotated<Self>
Creates a meta structure from an annotated boxed value.
source§impl IntoValue for NetworkReportPhases
impl IntoValue for NetworkReportPhases
source§fn into_value(self) -> Value
fn into_value(self) -> Value
Boxes the meta structure back into a value.
source§fn serialize_payload<S>(
&self,
s: S,
_behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
fn serialize_payload<S>(
&self,
s: S,
_behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
Efficiently serializes the payload directly.
§fn extract_child_meta(&self) -> BTreeMap<String, MetaTree>where
Self: Sized,
fn extract_child_meta(&self) -> BTreeMap<String, MetaTree>where
Self: Sized,
Extracts children meta map out of a value.
§fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
Extracts the meta tree out of annotated value. Read more
source§impl PartialEq for NetworkReportPhases
impl PartialEq for NetworkReportPhases
source§impl ProcessValue for NetworkReportPhases
impl ProcessValue for NetworkReportPhases
source§fn value_type(&self) -> EnumSet<ValueType>
fn value_type(&self) -> EnumSet<ValueType>
Returns the type of the value.
source§fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Executes a processor on this value.
source§fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Recurses into children of this value.
source§impl Serialize for NetworkReportPhases
impl Serialize for NetworkReportPhases
impl StructuralPartialEq for NetworkReportPhases
Auto Trait Implementations§
impl Freeze for NetworkReportPhases
impl RefUnwindSafe for NetworkReportPhases
impl Send for NetworkReportPhases
impl Sync for NetworkReportPhases
impl Unpin for NetworkReportPhases
impl UnwindSafe for NetworkReportPhases
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)