pub struct BinaryTarget {
pub name: String,
pub package_name: String,
pub package_version: String,
/* private fields */
}Fields§
§name: String§package_name: String§package_version: StringImplementations§
Source§impl BinaryTarget
impl BinaryTarget
Sourcepub fn release_path(&self) -> PathBuf
pub fn release_path(&self) -> PathBuf
Path where cargo build --release places the binary.
Sourcepub fn signed_release_path(&self) -> PathBuf
pub fn signed_release_path(&self) -> PathBuf
Path where cargo-sign places the signed binary.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinaryTarget
impl RefUnwindSafe for BinaryTarget
impl Send for BinaryTarget
impl Sync for BinaryTarget
impl Unpin for BinaryTarget
impl UnsafeUnpin for BinaryTarget
impl UnwindSafe for BinaryTarget
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