pub struct NetworkCreateResult {
pub network_id: String,
pub raw_output: CommandOutput,
}
Expand description
Result from network create command
Fields§
§network_id: String
Network ID
raw_output: CommandOutput
Raw command output
Implementations§
Trait Implementations§
Source§impl Clone for NetworkCreateResult
impl Clone for NetworkCreateResult
Source§fn clone(&self) -> NetworkCreateResult
fn clone(&self) -> NetworkCreateResult
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 NetworkCreateResult
impl Debug for NetworkCreateResult
Source§impl From<CommandOutput> for NetworkCreateResult
impl From<CommandOutput> for NetworkCreateResult
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 NetworkCreateResult
impl RefUnwindSafe for NetworkCreateResult
impl Send for NetworkCreateResult
impl Sync for NetworkCreateResult
impl Unpin for NetworkCreateResult
impl UnwindSafe for NetworkCreateResult
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