pub struct IniCompare {
pub updated: Vec<(IniParameter, IniParameter)>,
pub added: Vec<IniParameter>,
pub deleted: Vec<IniParameter>,
}
Fields§
§updated: Vec<(IniParameter, IniParameter)>
§added: Vec<IniParameter>
§deleted: Vec<IniParameter>
Implementations§
Source§impl IniCompare
impl IniCompare
Trait Implementations§
Source§impl Clone for IniCompare
impl Clone for IniCompare
Source§fn clone(&self) -> IniCompare
fn clone(&self) -> IniCompare
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 IniCompare
impl Debug for IniCompare
Source§impl Default for IniCompare
impl Default for IniCompare
Source§fn default() -> IniCompare
fn default() -> IniCompare
Returns the “default value” for a type. Read more
Source§impl PartialEq for IniCompare
impl PartialEq for IniCompare
impl StructuralPartialEq for IniCompare
Auto Trait Implementations§
impl Freeze for IniCompare
impl RefUnwindSafe for IniCompare
impl Send for IniCompare
impl Sync for IniCompare
impl Unpin for IniCompare
impl UnwindSafe for IniCompare
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