Struct builder_cpp::utils::TargetConfig
source · pub struct TargetConfig {
pub name: String,
pub src: String,
pub include_dir: String,
pub typ: String,
pub cflags: String,
pub libs: String,
pub deps: Vec<String>,
}Expand description
Struct describing the target config of the local project
Fields§
§name: String§src: String§include_dir: String§typ: String§cflags: String§libs: String§deps: Vec<String>Trait Implementations§
source§impl Clone for TargetConfig
impl Clone for TargetConfig
source§fn clone(&self) -> TargetConfig
fn clone(&self) -> TargetConfig
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 moreAuto Trait Implementations§
impl RefUnwindSafe for TargetConfig
impl Send for TargetConfig
impl Sync for TargetConfig
impl Unpin for TargetConfig
impl UnwindSafe for TargetConfig
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