pub struct TargetProperties {
pub is_symlink: bool,
pub is_directory: bool,
pub symlink_target: Option<String>,
}Expand description
Filesystem properties of an edge target, probed during graph building. Stored per-target on the Graph, not per-edge.
Fields§
§is_symlink: bool§is_directory: bool§symlink_target: Option<String>Trait Implementations§
Source§impl Clone for TargetProperties
impl Clone for TargetProperties
Source§fn clone(&self) -> TargetProperties
fn clone(&self) -> TargetProperties
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 TargetProperties
impl Debug for TargetProperties
Source§impl Default for TargetProperties
impl Default for TargetProperties
Source§fn default() -> TargetProperties
fn default() -> TargetProperties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TargetProperties
impl RefUnwindSafe for TargetProperties
impl Send for TargetProperties
impl Sync for TargetProperties
impl Unpin for TargetProperties
impl UnsafeUnpin for TargetProperties
impl UnwindSafe for TargetProperties
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