Skip to main content

LocalFrameDestination

Type Alias LocalFrameDestination 

Source
pub type LocalFrameDestination = FrameDestination<()>;
Expand description

A FrameDestination that is guaranteed to be destined to this host if it is an individual address.

Aliased Type§

pub enum LocalFrameDestination {
    Individual {
        local: (),
    },
    Multicast,
    Broadcast,
}

Variants§

§

Individual

A unicast address - one which is neither multicast nor broadcast.

Fields

§local: ()

Whether the frame’s destination address belongs to the receiver.

§

Multicast

A multicast address; if the addressing scheme supports overlap between multicast and broadcast, then broadcast addresses should use the Broadcast variant.

§

Broadcast

A broadcast address; if the addressing scheme supports overlap between multicast and broadcast, then broadcast addresses should use the Broadcast variant.