pub struct NetworkAnalysis {
pub topology_issues: Vec<String>,
pub bandwidth_constraints: Vec<String>,
pub routing_problems: Vec<String>,
pub firewall_issues: Vec<String>,
pub nat_configuration_problems: Vec<String>,
}Expand description
Network analysis
Fields§
§topology_issues: Vec<String>Network topology issues
bandwidth_constraints: Vec<String>Bandwidth constraints
routing_problems: Vec<String>Routing problems
firewall_issues: Vec<String>Firewall issues
nat_configuration_problems: Vec<String>NAT configuration problems
Trait Implementations§
Source§impl Clone for NetworkAnalysis
impl Clone for NetworkAnalysis
Source§fn clone(&self) -> NetworkAnalysis
fn clone(&self) -> NetworkAnalysis
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 moreAuto Trait Implementations§
impl Freeze for NetworkAnalysis
impl RefUnwindSafe for NetworkAnalysis
impl Send for NetworkAnalysis
impl Sync for NetworkAnalysis
impl Unpin for NetworkAnalysis
impl UnwindSafe for NetworkAnalysis
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