Struct trust_dns_proto::op::Edns
source · pub struct Edns { /* private fields */ }
Expand description
Edns implements the higher level concepts for working with extended dns as it is used to create or be created from OPT record data.
Implementations§
source§impl Edns
impl Edns
sourcepub fn rcode_high(&self) -> u8
pub fn rcode_high(&self) -> u8
The high order bytes for the response code in the DNS Message
sourcepub fn max_payload(&self) -> u16
pub fn max_payload(&self) -> u16
Maximum supported size of the DNS payload
sourcepub fn option(&self, code: EdnsCode) -> Option<&EdnsOption>
pub fn option(&self, code: EdnsCode) -> Option<&EdnsOption>
Returns the Option associated with the code
sourcepub fn options_mut(&mut self) -> &mut OPT
pub fn options_mut(&mut self) -> &mut OPT
Returns a mutable options portion of EDNS
sourcepub fn set_rcode_high(&mut self, rcode_high: u8) -> &mut Self
pub fn set_rcode_high(&mut self, rcode_high: u8) -> &mut Self
Set the high order bits for the result code.
sourcepub fn set_version(&mut self, version: u8) -> &mut Self
pub fn set_version(&mut self, version: u8) -> &mut Self
Set the EDNS version
sourcepub fn set_dnssec_ok(&mut self, dnssec_ok: bool) -> &mut Self
pub fn set_dnssec_ok(&mut self, dnssec_ok: bool) -> &mut Self
Set to true if DNSSEC is supported
sourcepub fn set_max_payload(&mut self, max_payload: u16) -> &mut Self
pub fn set_max_payload(&mut self, max_payload: u16) -> &mut Self
Set the maximum payload which can be supported
From RFC 6891: Values lower than 512 MUST be treated as equal to 512
sourcepub fn set_option(&mut self, option: EdnsOption)
👎Deprecated: Please use options_mut().insert() to modify
pub fn set_option(&mut self, option: EdnsOption)
Set the specified EDNS option
Trait Implementations§
source§impl BinEncodable for Edns
impl BinEncodable for Edns
source§fn emit(&self, encoder: &mut BinEncoder<'_>) -> ProtoResult<()>
fn emit(&self, encoder: &mut BinEncoder<'_>) -> ProtoResult<()>
Write the type to the stream
source§impl PartialEq for Edns
impl PartialEq for Edns
impl Eq for Edns
impl StructuralPartialEq for Edns
Auto Trait Implementations§
impl Freeze for Edns
impl RefUnwindSafe for Edns
impl Send for Edns
impl Sync for Edns
impl Unpin for Edns
impl UnwindSafe for Edns
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)