pub struct Diff<'f, 't> {
pub from: &'f Policy,
pub changes: Vec<Change>,
pub to: &'t Policy,
/* private fields */
}
Expand description
The difference between two Policy
s.
Fields§
§from: &'f Policy
§changes: Vec<Change>
§to: &'t Policy
Trait Implementations§
Auto Trait Implementations§
impl<'f, 't> Freeze for Diff<'f, 't>
impl<'f, 't> RefUnwindSafe for Diff<'f, 't>
impl<'f, 't> Send for Diff<'f, 't>
impl<'f, 't> Sync for Diff<'f, 't>
impl<'f, 't> Unpin for Diff<'f, 't>
impl<'f, 't> UnwindSafe for Diff<'f, 't>
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