pub struct DpkgSourceLocalChanges {
pub diff_file: Option<String>,
pub files: Option<Vec<String>>,
}Expand description
Problem representing unexpected local changes in the source package.
This struct is used when dpkg-source detects unexpected local changes to upstream source code, which should be represented as patches instead.
Fields§
§diff_file: Option<String>Path to the diff file showing the changes, if available.
files: Option<Vec<String>>List of files that have been changed locally, if available.
Trait Implementations§
Source§impl Clone for DpkgSourceLocalChanges
impl Clone for DpkgSourceLocalChanges
Source§fn clone(&self) -> DpkgSourceLocalChanges
fn clone(&self) -> DpkgSourceLocalChanges
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 DpkgSourceLocalChanges
impl Debug for DpkgSourceLocalChanges
Source§impl Display for DpkgSourceLocalChanges
impl Display for DpkgSourceLocalChanges
Source§impl Problem for DpkgSourceLocalChanges
impl Problem for DpkgSourceLocalChanges
Source§fn is_universal(&self) -> bool
fn is_universal(&self) -> bool
Is this problem universal, i.e. applicable to all build steps? Read more
Auto Trait Implementations§
impl Freeze for DpkgSourceLocalChanges
impl RefUnwindSafe for DpkgSourceLocalChanges
impl Send for DpkgSourceLocalChanges
impl Sync for DpkgSourceLocalChanges
impl Unpin for DpkgSourceLocalChanges
impl UnsafeUnpin for DpkgSourceLocalChanges
impl UnwindSafe for DpkgSourceLocalChanges
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more