pub struct CallConnection {
pub id: i64,
pub ip: String,
pub ipv6: String,
pub port: i32,
pub peer_tag: String,
}Expand description
Describes the address of UDP reflectors
Fields§
§id: i64Reflector identifier
ip: StringIPv4 reflector address
ipv6: StringIPv6 reflector address
port: i32Reflector port number
peer_tag: StringConnection peer tag
Trait Implementations§
Source§impl Clone for CallConnection
impl Clone for CallConnection
Source§fn clone(&self) -> CallConnection
fn clone(&self) -> CallConnection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CallConnection
impl Debug for CallConnection
Source§impl<'de> Deserialize<'de> for CallConnection
impl<'de> Deserialize<'de> for CallConnection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CallConnection
impl RefUnwindSafe for CallConnection
impl Send for CallConnection
impl Sync for CallConnection
impl Unpin for CallConnection
impl UnwindSafe for CallConnection
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