pub struct CmakeInstallEntry {
pub install_kind: String,
pub destination: String,
pub paths: Vec<String>,
pub component_name: Option<String>,
pub subject: Option<CmakeTargetRef>,
pub target_refs: Vec<CmakeTargetRef>,
pub export_name: Option<String>,
}Fields§
§install_kind: String§destination: String§paths: Vec<String>§component_name: Option<String>§subject: Option<CmakeTargetRef>§target_refs: Vec<CmakeTargetRef>§export_name: Option<String>Trait Implementations§
Source§impl Clone for CmakeInstallEntry
impl Clone for CmakeInstallEntry
Source§fn clone(&self) -> CmakeInstallEntry
fn clone(&self) -> CmakeInstallEntry
Returns a duplicate 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 CmakeInstallEntry
impl Debug for CmakeInstallEntry
Source§impl<'de> Deserialize<'de> for CmakeInstallEntry
impl<'de> Deserialize<'de> for CmakeInstallEntry
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 CmakeInstallEntry
impl PartialEq for CmakeInstallEntry
Source§impl Serialize for CmakeInstallEntry
impl Serialize for CmakeInstallEntry
impl Eq for CmakeInstallEntry
impl StructuralPartialEq for CmakeInstallEntry
Auto Trait Implementations§
impl Freeze for CmakeInstallEntry
impl RefUnwindSafe for CmakeInstallEntry
impl Send for CmakeInstallEntry
impl Sync for CmakeInstallEntry
impl Unpin for CmakeInstallEntry
impl UnsafeUnpin for CmakeInstallEntry
impl UnwindSafe for CmakeInstallEntry
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.