pub struct CargoTarget {
pub name: String,
pub kind: Vec<String>,
pub src_path: PathBuf,
}Expand description
One compile target of the selected package (lib, bin, …).
Fields§
§name: String§kind: Vec<String>§src_path: PathBufTrait Implementations§
Source§impl Clone for CargoTarget
impl Clone for CargoTarget
Source§fn clone(&self) -> CargoTarget
fn clone(&self) -> CargoTarget
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 CargoTarget
impl Debug for CargoTarget
Source§impl<'de> Deserialize<'de> for CargoTarget
impl<'de> Deserialize<'de> for CargoTarget
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
impl Eq for CargoTarget
Source§impl PartialEq for CargoTarget
impl PartialEq for CargoTarget
Source§impl Serialize for CargoTarget
impl Serialize for CargoTarget
impl StructuralPartialEq for CargoTarget
Auto Trait Implementations§
impl Freeze for CargoTarget
impl RefUnwindSafe for CargoTarget
impl Send for CargoTarget
impl Sync for CargoTarget
impl Unpin for CargoTarget
impl UnsafeUnpin for CargoTarget
impl UnwindSafe for CargoTarget
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