pub struct QuicRfcParser { /* private fields */ }
Expand description
Parse specific QUIC RFCs
Implementations§
Source§impl QuicRfcParser
impl QuicRfcParser
Sourcepub fn parse_rfc9000(&self, content: &str) -> Vec<ComplianceRequirement>
pub fn parse_rfc9000(&self, content: &str) -> Vec<ComplianceRequirement>
Parse RFC 9000 (QUIC Transport Protocol)
Sourcepub fn parse_address_discovery_draft(
&self,
content: &str,
) -> Vec<ComplianceRequirement>
pub fn parse_address_discovery_draft( &self, content: &str, ) -> Vec<ComplianceRequirement>
Parse draft-ietf-quic-address-discovery
Sourcepub fn parse_nat_traversal_draft(
&self,
content: &str,
) -> Vec<ComplianceRequirement>
pub fn parse_nat_traversal_draft( &self, content: &str, ) -> Vec<ComplianceRequirement>
Parse draft-seemann-quic-nat-traversal
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuicRfcParser
impl RefUnwindSafe for QuicRfcParser
impl Send for QuicRfcParser
impl Sync for QuicRfcParser
impl Unpin for QuicRfcParser
impl UnwindSafe for QuicRfcParser
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