pub struct CacheSymlinkNode {
pub mode: u32,
pub name: String,
pub target: String,
}Expand description
A symbolic-link entry in a canonical cache directory.
Fields§
§mode: u32Platform mode bits recorded for the symbolic link.
name: StringSingle path-component name within the parent directory.
target: StringLink target text exactly as recorded by the producer.
Trait Implementations§
Source§impl Clone for SymlinkNode
impl Clone for SymlinkNode
Source§fn clone(&self) -> SymlinkNode
fn clone(&self) -> SymlinkNode
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 SymlinkNode
impl Debug for SymlinkNode
Source§impl<'de> Deserialize<'de> for SymlinkNode
impl<'de> Deserialize<'de> for SymlinkNode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SymlinkNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SymlinkNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SymlinkNode
Source§impl PartialEq for SymlinkNode
impl PartialEq for SymlinkNode
Source§impl Serialize for SymlinkNode
impl Serialize for SymlinkNode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SymlinkNode
Auto Trait Implementations§
impl Freeze for SymlinkNode
impl RefUnwindSafe for SymlinkNode
impl Send for SymlinkNode
impl Sync for SymlinkNode
impl Unpin for SymlinkNode
impl UnsafeUnpin for SymlinkNode
impl UnwindSafe for SymlinkNode
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