Struct async_dnssd::FullName
source · pub struct FullName<'a> {
pub service: Option<&'a str>,
pub reg_type: &'a str,
pub domain: &'a str,
}
Expand description
Full name consiting of (up to) three parts
Fields§
§service: Option<&'a str>
(unescaped) service name (becomes single label in full name)
reg_type: &'a str
registration type (valid names don’t need escaping)
domain: &'a str
(escaped) domain name (most names don’t need escaping)
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FullName<'a>
impl<'a> RefUnwindSafe for FullName<'a>
impl<'a> Send for FullName<'a>
impl<'a> Sync for FullName<'a>
impl<'a> Unpin for FullName<'a>
impl<'a> UnwindSafe for FullName<'a>
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