pub struct EndpointResult {
pub endpoint: String,
pub connected: bool,
pub quic_versions: Vec<u32>,
pub extensions: Vec<String>,
pub issues: Vec<String>,
}
Expand description
Result of testing against a specific endpoint
Fields§
§endpoint: String
Endpoint URL
connected: bool
Whether connection succeeded
quic_versions: Vec<u32>
Supported QUIC versions
extensions: Vec<String>
Supported extensions
issues: Vec<String>
Compliance issues found
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EndpointResult
impl RefUnwindSafe for EndpointResult
impl Send for EndpointResult
impl Sync for EndpointResult
impl Unpin for EndpointResult
impl UnwindSafe for EndpointResult
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