Struct AvahiMdnsBrowser

Source
pub struct AvahiMdnsBrowser { /* private fields */ }

Trait Implementations§

Source§

impl Debug for AvahiMdnsBrowser

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl TMdnsBrowser for AvahiMdnsBrowser

Source§

fn new(service_type: ServiceType) -> AvahiMdnsBrowser

Creates a new MdnsBrowser that browses for the specified kind (e.g. _http._tcp)
Source§

fn set_network_interface(&mut self, interface: NetworkInterface)

Sets the network interface on which to browse for services on. Read more
Source§

fn network_interface(&self) -> NetworkInterface

Returns the network interface on which to browse for services on.
Source§

fn set_service_discovered_callback( &mut self, service_discovered_callback: Box<dyn Fn(Result<ServiceDiscovery, Error>, Option<Arc<dyn Any>>)>, )

Sets the ServiceDiscoveredCallback that is invoked when the browser has discovered and resolved a service.
Source§

fn set_context(&mut self, context: Box<dyn Any>)

Sets the optional user context to pass through to the callback. This is useful if you need to share state between pre and post-callback. The context type must implement Any.
Source§

fn context(&self) -> Option<&(dyn Any + 'static)>

Returns the optional user context to pass through to the callback.
Source§

fn browse_services(&mut self) -> Result<AvahiEventLoop, Error>

Starts the browser. Returns an EventLoop which can be called to keep the browser alive.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.