pub struct PopulateResult {
pub values: HashMap<String, PseudoListCore>,
pub all_values_map: HashMap<String, Option<bool>>,
pub all_nodegroups_map: HashMap<String, bool>,
}Expand description
Result from populate
Fields§
§values: HashMap<String, PseudoListCore>Map of alias → PseudoListCore
all_values_map: HashMap<String, Option<bool>>All values map (alias -> is_truthy)
all_nodegroups_map: HashMap<String, bool>All nodegroups map (nodegroup_id -> is_loaded)
Trait Implementations§
Source§impl Clone for PopulateResult
impl Clone for PopulateResult
Source§fn clone(&self) -> PopulateResult
fn clone(&self) -> PopulateResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PopulateResult
impl RefUnwindSafe for PopulateResult
impl Send for PopulateResult
impl Sync for PopulateResult
impl Unpin for PopulateResult
impl UnsafeUnpin for PopulateResult
impl UnwindSafe for PopulateResult
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