pub struct Address {
pub address: String,
pub ttl: Option<isize>,
pub range: Option<isize>,
}Expand description
Address describes a structured address token from within the “c=” field.
Fields§
§address: StringThe address itself: a host name, IPv4/IPv6 literal, or multicast group.
ttl: Option<isize>The multicast TTL, for multicast addresses.
range: Option<isize>The number of consecutive multicast addresses in the range.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnsafeUnpin for Address
impl UnwindSafe for Address
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