pub struct DepfileTarget {
pub name: String,
pub quoted: bool,
}Expand description
One target of a caller’s dependency rule.
Fields§
§name: StringThe target text as the caller gave it.
quoted: boolWhether characters special to make are quoted on output, as -MQ
asks; -MT writes the name literally.
Trait Implementations§
Source§impl Clone for DepfileTarget
impl Clone for DepfileTarget
Source§fn clone(&self) -> DepfileTarget
fn clone(&self) -> DepfileTarget
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 DepfileTarget
impl Debug for DepfileTarget
impl Eq for DepfileTarget
Source§impl PartialEq for DepfileTarget
impl PartialEq for DepfileTarget
impl StructuralPartialEq for DepfileTarget
Auto Trait Implementations§
impl Freeze for DepfileTarget
impl RefUnwindSafe for DepfileTarget
impl Send for DepfileTarget
impl Sync for DepfileTarget
impl Unpin for DepfileTarget
impl UnsafeUnpin for DepfileTarget
impl UnwindSafe for DepfileTarget
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