pub struct PacketCaptureQueryStatusResult {
pub name: Option<String>,
pub id: Option<String>,
pub capture_start_time: Option<OffsetDateTime>,
pub packet_capture_status: Option<PacketCaptureStatus>,
pub stop_reason: Option<String>,
pub packet_capture_error: Vec<String>,
}Expand description
Status of packet capture session.
Fields§
§name: Option<String>The name of the packet capture resource.
id: Option<String>The ID of the packet capture resource.
capture_start_time: Option<OffsetDateTime>The start time of the packet capture session.
packet_capture_status: Option<PacketCaptureStatus>The status of the packet capture session.
stop_reason: Option<String>The reason the current packet capture session was stopped.
packet_capture_error: Vec<String>List of errors of packet capture session.
Implementations§
Trait Implementations§
Source§impl Clone for PacketCaptureQueryStatusResult
impl Clone for PacketCaptureQueryStatusResult
Source§fn clone(&self) -> PacketCaptureQueryStatusResult
fn clone(&self) -> PacketCaptureQueryStatusResult
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 Default for PacketCaptureQueryStatusResult
impl Default for PacketCaptureQueryStatusResult
Source§fn default() -> PacketCaptureQueryStatusResult
fn default() -> PacketCaptureQueryStatusResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PacketCaptureQueryStatusResult
impl<'de> Deserialize<'de> for PacketCaptureQueryStatusResult
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 PacketCaptureQueryStatusResult
impl PartialEq for PacketCaptureQueryStatusResult
Source§fn eq(&self, other: &PacketCaptureQueryStatusResult) -> bool
fn eq(&self, other: &PacketCaptureQueryStatusResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PacketCaptureQueryStatusResult
Auto Trait Implementations§
impl Freeze for PacketCaptureQueryStatusResult
impl RefUnwindSafe for PacketCaptureQueryStatusResult
impl Send for PacketCaptureQueryStatusResult
impl Sync for PacketCaptureQueryStatusResult
impl Unpin for PacketCaptureQueryStatusResult
impl UnwindSafe for PacketCaptureQueryStatusResult
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