Trait coreplus::net::MulticastSocket[][src]

pub trait MulticastSocket {
    type Error;
    fn join_multicast(&self, addr: IpAddr) -> Result<(), Self::Error>;
fn leave_multicast(&self, addr: IpAddr) -> Result<(), Self::Error>; }

Associated Types

The associated error type.

Required methods

Attempts to join the given multicast group.

Attempts to leave the given multicast group.

Implementations on Foreign Types

Implementors