pub struct SingleEdgeResponse {
pub destination_egress_location: Option<EdgeLocation>,
pub destination_router: Option<String>,
pub probing_latency: Option<LatencyDistribution>,
pub result: Option<String>,
pub sent_probe_count: Option<i32>,
pub successful_probe_count: Option<i32>,
}Expand description
Probing results for a single edge device.
This type is not used in any activity, and only used as part of another schema.
Fields§
§destination_egress_location: Option<EdgeLocation>The EdgeLocation from which a packet, destined to the internet, will egress the Google network. This will only be populated for a connectivity test which has an internet destination address. The absence of this field must not be used as an indication that the destination is part of the Google network.
destination_router: Option<String>Router name in the format ‘{router}.{metroshard}’. For example: pf01.aaa01, pr02.aaa01.
probing_latency: Option<LatencyDistribution>Latency as measured by active probing in one direction: from the source to the destination endpoint.
result: Option<String>The overall result of active probing for this egress device.
sent_probe_count: Option<i32>Number of probes sent.
successful_probe_count: Option<i32>Number of probes that reached the destination.
Trait Implementations§
Source§impl Clone for SingleEdgeResponse
impl Clone for SingleEdgeResponse
Source§fn clone(&self) -> SingleEdgeResponse
fn clone(&self) -> SingleEdgeResponse
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 SingleEdgeResponse
impl Debug for SingleEdgeResponse
Source§impl Default for SingleEdgeResponse
impl Default for SingleEdgeResponse
Source§fn default() -> SingleEdgeResponse
fn default() -> SingleEdgeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SingleEdgeResponse
impl<'de> Deserialize<'de> for SingleEdgeResponse
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 Part for SingleEdgeResponse
Auto Trait Implementations§
impl Freeze for SingleEdgeResponse
impl RefUnwindSafe for SingleEdgeResponse
impl Send for SingleEdgeResponse
impl Sync for SingleEdgeResponse
impl Unpin for SingleEdgeResponse
impl UnsafeUnpin for SingleEdgeResponse
impl UnwindSafe for SingleEdgeResponse
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