pub struct AgentRouting {
pub agent_id: Uuid,
pub targets4: Vec<Ipv4Addr>,
pub targets6: Vec<Ipv6Addr>,
pub disable_ip6: bool,
}
Fields§
§agent_id: Uuid
§targets4: Vec<Ipv4Addr>
§targets6: Vec<Ipv6Addr>
§disable_ip6: bool
Trait Implementations§
Source§impl Clone for AgentRouting
impl Clone for AgentRouting
Source§fn clone(&self) -> AgentRouting
fn clone(&self) -> AgentRouting
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 AgentRouting
impl Debug for AgentRouting
Source§impl<'de> Deserialize<'de> for AgentRouting
impl<'de> Deserialize<'de> for AgentRouting
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 AgentRouting
impl RefUnwindSafe for AgentRouting
impl Send for AgentRouting
impl Sync for AgentRouting
impl Unpin for AgentRouting
impl UnwindSafe for AgentRouting
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