pub struct InspectNetworkOptions {
pub verbose: bool,
pub scope: Option<String>,
}Expand description
Internal struct used in the NetworkInspect API
Use a InspectNetworkOptionsBuilder to instantiate this struct.
Fields§
§verbose: bool§scope: Option<String>Trait Implementations§
Source§impl Clone for InspectNetworkOptions
impl Clone for InspectNetworkOptions
Source§fn clone(&self) -> InspectNetworkOptions
fn clone(&self) -> InspectNetworkOptions
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 InspectNetworkOptions
impl Debug for InspectNetworkOptions
Source§impl Default for InspectNetworkOptions
impl Default for InspectNetworkOptions
Source§fn default() -> InspectNetworkOptions
fn default() -> InspectNetworkOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for InspectNetworkOptions
impl PartialEq for InspectNetworkOptions
Source§impl Serialize for InspectNetworkOptions
impl Serialize for InspectNetworkOptions
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for InspectNetworkOptions
Auto Trait Implementations§
impl Freeze for InspectNetworkOptions
impl RefUnwindSafe for InspectNetworkOptions
impl Send for InspectNetworkOptions
impl Sync for InspectNetworkOptions
impl Unpin for InspectNetworkOptions
impl UnsafeUnpin for InspectNetworkOptions
impl UnwindSafe for InspectNetworkOptions
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