pub struct OptPseudoSection {
pub extended_rcode: u8,
pub version: u8,
pub dnssec_ok: bool,
pub udp_max_payload_size: u16,
pub ede: Vec<EDE>,
pub options: Vec<EdnsOptionEntry>,
}
Fields§
§extended_rcode: u8
§version: u8
§dnssec_ok: bool
§udp_max_payload_size: u16
§ede: Vec<EDE>
§options: Vec<EdnsOptionEntry>
Trait Implementations§
Source§impl Clone for OptPseudoSection
impl Clone for OptPseudoSection
Source§fn clone(&self) -> OptPseudoSection
fn clone(&self) -> OptPseudoSection
Returns a copy 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 OptPseudoSection
impl Debug for OptPseudoSection
Source§impl Default for OptPseudoSection
impl Default for OptPseudoSection
Source§fn default() -> OptPseudoSection
fn default() -> OptPseudoSection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OptPseudoSection
impl RefUnwindSafe for OptPseudoSection
impl Send for OptPseudoSection
impl Sync for OptPseudoSection
impl Unpin for OptPseudoSection
impl UnwindSafe for OptPseudoSection
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