pub struct V2ipStreamSource {
pub kind: StreamKind,
pub ip: Ipv4Addr,
pub port: u16,
}Expand description
A single multicast stream address.
Fields§
§kind: StreamKindWhich stream this address is for.
ip: Ipv4AddrThe multicast group.
port: u16The destination UDP port.
Implementations§
Trait Implementations§
Source§impl Clone for V2ipStreamSource
impl Clone for V2ipStreamSource
Source§fn clone(&self) -> V2ipStreamSource
fn clone(&self) -> V2ipStreamSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for V2ipStreamSource
Source§impl Debug for V2ipStreamSource
impl Debug for V2ipStreamSource
Source§impl Default for V2ipStreamSource
impl Default for V2ipStreamSource
Source§impl Display for V2ipStreamSource
impl Display for V2ipStreamSource
impl Eq for V2ipStreamSource
Source§impl PartialEq for V2ipStreamSource
impl PartialEq for V2ipStreamSource
impl StructuralPartialEq for V2ipStreamSource
Auto Trait Implementations§
impl Freeze for V2ipStreamSource
impl RefUnwindSafe for V2ipStreamSource
impl Send for V2ipStreamSource
impl Sync for V2ipStreamSource
impl Unpin for V2ipStreamSource
impl UnsafeUnpin for V2ipStreamSource
impl UnwindSafe for V2ipStreamSource
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