pub struct ProviderRelayTestResult {
pub platform: String,
pub status: ProviderRelayTestStatus,
pub checked_at: String,
pub endpoint: String,
pub peer_alias: Option<String>,
pub http_status: Option<u16>,
pub message: String,
pub remediation_hint: Option<String>,
pub preflight: Option<ProviderDoctorResult>,
pub details: Option<Value>,
}Fields§
§platform: String§status: ProviderRelayTestStatus§checked_at: String§endpoint: String§peer_alias: Option<String>§http_status: Option<u16>§message: String§remediation_hint: Option<String>§preflight: Option<ProviderDoctorResult>§details: Option<Value>Trait Implementations§
Source§impl Clone for ProviderRelayTestResult
impl Clone for ProviderRelayTestResult
Source§fn clone(&self) -> ProviderRelayTestResult
fn clone(&self) -> ProviderRelayTestResult
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 ProviderRelayTestResult
impl Debug for ProviderRelayTestResult
Source§impl<'de> Deserialize<'de> for ProviderRelayTestResult
impl<'de> Deserialize<'de> for ProviderRelayTestResult
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 ProviderRelayTestResult
impl PartialEq for ProviderRelayTestResult
Source§impl Serialize for ProviderRelayTestResult
impl Serialize for ProviderRelayTestResult
impl Eq for ProviderRelayTestResult
impl StructuralPartialEq for ProviderRelayTestResult
Auto Trait Implementations§
impl Freeze for ProviderRelayTestResult
impl RefUnwindSafe for ProviderRelayTestResult
impl Send for ProviderRelayTestResult
impl Sync for ProviderRelayTestResult
impl Unpin for ProviderRelayTestResult
impl UnsafeUnpin for ProviderRelayTestResult
impl UnwindSafe for ProviderRelayTestResult
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