Struct omicron_zone_package::package::RustPackage
source · pub struct RustPackage {
pub binary_names: Vec<String>,
pub release: bool,
}Expand description
Describes configuration for a package which contains a Rust binary.
Fields§
§binary_names: Vec<String>The name of the compiled binary to be used.
release: boolTrue if the package has been built in release mode.
Trait Implementations§
source§impl Clone for RustPackage
impl Clone for RustPackage
source§fn clone(&self) -> RustPackage
fn clone(&self) -> RustPackage
Returns a copy of the value. Read more
1.0.0 · 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 RustPackage
impl Debug for RustPackage
source§impl<'de> Deserialize<'de> for RustPackage
impl<'de> Deserialize<'de> for RustPackage
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for RustPackage
impl PartialEq for RustPackage
source§fn eq(&self, other: &RustPackage) -> bool
fn eq(&self, other: &RustPackage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RustPackage
Auto Trait Implementations§
impl RefUnwindSafe for RustPackage
impl Send for RustPackage
impl Sync for RustPackage
impl Unpin for RustPackage
impl UnwindSafe for RustPackage
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