pub enum PgHbaDiff {
Added {
line_number: usize,
rule: PgHbaRule,
},
Removed {
line_number: usize,
rule: PgHbaRule,
},
Modified {
line_number: usize,
old: PgHbaRule,
new: PgHbaRule,
},
}Expand description
pg_hba.conf difference
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PgHbaDiff
impl RefUnwindSafe for PgHbaDiff
impl Send for PgHbaDiff
impl Sync for PgHbaDiff
impl Unpin for PgHbaDiff
impl UnwindSafe for PgHbaDiff
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