pub enum RsData {
TXT(BTreeSet<String>),
A(BTreeSet<Ipv4Addr>),
AAAA(BTreeSet<Ipv6Addr>),
}Variants§
Implementations§
Source§impl RsData
impl RsData
pub fn record_type(&self) -> RecordType
Trait Implementations§
impl Eq for RsData
impl StructuralPartialEq for RsData
Auto Trait Implementations§
impl Freeze for RsData
impl RefUnwindSafe for RsData
impl Send for RsData
impl Sync for RsData
impl Unpin for RsData
impl UnwindSafe for RsData
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