1#[derive(Default, Debug)] 2pub struct NetworkInspect<'a> { 3 /// Detailed inspect output for troubleshooting 4 pub verbose: Option<bool>, 5 /// Filter the network by scope (swarm, global, or local) 6 pub scope: Option<&'a str>, 7}