pub struct NetworkCreateOptions {Show 14 fields
pub created: DateTime<Utc>,
pub dns_enabled: bool,
pub driver: String,
pub id: String,
pub internal: bool,
pub ipam_options: HashMap<String, String>,
pub ipv6_enabled: bool,
pub labels: HashMap<String, String>,
pub name: String,
pub network_dns_servers: Vec<String>,
pub network_interface: String,
pub options: HashMap<String, String>,
pub routes: Vec<NetworkInspectRoute>,
pub subnets: Vec<NetworkInspectSubnet>,
}
Fields§
§created: DateTime<Utc>
§dns_enabled: bool
§driver: String
§id: String
§internal: bool
§ipam_options: HashMap<String, String>
§ipv6_enabled: bool
§labels: HashMap<String, String>
§name: String
§network_dns_servers: Vec<String>
§network_interface: String
§options: HashMap<String, String>
§routes: Vec<NetworkInspectRoute>
§subnets: Vec<NetworkInspectSubnet>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NetworkCreateOptions
impl RefUnwindSafe for NetworkCreateOptions
impl Send for NetworkCreateOptions
impl Sync for NetworkCreateOptions
impl Unpin for NetworkCreateOptions
impl UnwindSafe for NetworkCreateOptions
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