pub struct BiosConfigDiff {
pub changed: HashMap<String, (Value, Value)>,
pub only_in_source: HashMap<String, Value>,
pub only_in_target: HashMap<String, Value>,
}Expand description
Result of comparing two BIOS configs.
Fields§
§changed: HashMap<String, (Value, Value)>Attributes that differ between source and target.
only_in_source: HashMap<String, Value>Attributes only in source.
only_in_target: HashMap<String, Value>Attributes only in target.
Trait Implementations§
Source§impl Clone for BiosConfigDiff
impl Clone for BiosConfigDiff
Source§fn clone(&self) -> BiosConfigDiff
fn clone(&self) -> BiosConfigDiff
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 moreSource§impl Debug for BiosConfigDiff
impl Debug for BiosConfigDiff
Source§impl<'de> Deserialize<'de> for BiosConfigDiff
impl<'de> Deserialize<'de> for BiosConfigDiff
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 BiosConfigDiff
impl RefUnwindSafe for BiosConfigDiff
impl Send for BiosConfigDiff
impl Sync for BiosConfigDiff
impl Unpin for BiosConfigDiff
impl UnsafeUnpin for BiosConfigDiff
impl UnwindSafe for BiosConfigDiff
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