pub struct CargoDeb<'tmp> {
pub options: BuildOptions<'tmp>,
pub no_build: bool,
pub verbose_cargo_build: bool,
pub verbose: bool,
pub compress_config: CompressConfig,
pub deb_output: Option<OutputPath<'tmp>>,
pub install: (bool, bool),
}Fields§
§options: BuildOptions<'tmp>§no_build: bool§verbose_cargo_build: boolBuild with –verbose
verbose: boolMore info from cargo deb
compress_config: CompressConfig§deb_output: Option<OutputPath<'tmp>>User-configured output path for *.deb
install: (bool, bool)Run dpkg -i; run for dbsym
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'tmp> Freeze for CargoDeb<'tmp>
impl<'tmp> RefUnwindSafe for CargoDeb<'tmp>
impl<'tmp> Send for CargoDeb<'tmp>
impl<'tmp> Sync for CargoDeb<'tmp>
impl<'tmp> Unpin for CargoDeb<'tmp>
impl<'tmp> UnwindSafe for CargoDeb<'tmp>
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> 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