pub struct Decision {
pub encrypt: bool,
pub text: TextMode,
pub eol: Option<EolMode>,
pub suppress_diff: bool,
}Expand description
What the file says about one path.
Fields§
§encrypt: boolWhether this path is encrypted at all.
text: TextModeHow its content is treated before encryption.
eol: Option<EolMode>An explicit line ending for the smudge path, if one was declared.
suppress_diff: boolWhether binary asked for the diff driver to be left off.
Trait Implementations§
impl Copy for Decision
impl Eq for Decision
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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