pub struct NetworkRmResult {
pub removed_networks: Vec<String>,
pub raw_output: CommandOutput,
}
Expand description
Result from network rm command
Fields§
§removed_networks: Vec<String>
Removed networks
raw_output: CommandOutput
Raw command output
Implementations§
Trait Implementations§
Source§impl Clone for NetworkRmResult
impl Clone for NetworkRmResult
Source§fn clone(&self) -> NetworkRmResult
fn clone(&self) -> NetworkRmResult
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 NetworkRmResult
impl Debug for NetworkRmResult
Source§impl From<CommandOutput> for NetworkRmResult
impl From<CommandOutput> for NetworkRmResult
Source§fn from(output: CommandOutput) -> Self
fn from(output: CommandOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NetworkRmResult
impl RefUnwindSafe for NetworkRmResult
impl Send for NetworkRmResult
impl Sync for NetworkRmResult
impl Unpin for NetworkRmResult
impl UnwindSafe for NetworkRmResult
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