pub struct InventoryGroup {
pub hosts: Vec<String>,
pub children: Vec<String>,
pub vars: HashMap<String, Value>,
}
Expand description
Represents a single inventory group with its hosts, children, and variables.
§Examples
use ansible::InventoryGroup;
use std::collections::HashMap;
let group = InventoryGroup {
hosts: vec!["web01".to_string(), "web02".to_string()],
children: vec!["webservers".to_string()],
vars: HashMap::new(),
};
assert_eq!(group.hosts.len(), 2);
Fields§
§hosts: Vec<String>
List of hosts in this group
children: Vec<String>
List of child groups
vars: HashMap<String, Value>
Group variables
Trait Implementations§
Source§impl Clone for InventoryGroup
impl Clone for InventoryGroup
Source§fn clone(&self) -> InventoryGroup
fn clone(&self) -> InventoryGroup
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 InventoryGroup
impl Debug for InventoryGroup
Source§impl<'de> Deserialize<'de> for InventoryGroup
impl<'de> Deserialize<'de> for InventoryGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InventoryGroup
impl RefUnwindSafe for InventoryGroup
impl Send for InventoryGroup
impl Sync for InventoryGroup
impl Unpin for InventoryGroup
impl UnwindSafe for InventoryGroup
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