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: u32§name: String§target: StringTrait Implementations§
Source§impl Clone for CacheSymlinkNode
impl Clone for CacheSymlinkNode
Source§fn clone(&self) -> CacheSymlinkNode
fn clone(&self) -> CacheSymlinkNode
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 CacheSymlinkNode
impl Debug for CacheSymlinkNode
Source§impl<'de> Deserialize<'de> for CacheSymlinkNode
impl<'de> Deserialize<'de> for CacheSymlinkNode
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 CacheSymlinkNode
Source§impl PartialEq for CacheSymlinkNode
impl PartialEq for CacheSymlinkNode
Source§impl Serialize for CacheSymlinkNode
impl Serialize for CacheSymlinkNode
impl StructuralPartialEq for CacheSymlinkNode
Auto Trait Implementations§
impl Freeze for CacheSymlinkNode
impl RefUnwindSafe for CacheSymlinkNode
impl Send for CacheSymlinkNode
impl Sync for CacheSymlinkNode
impl Unpin for CacheSymlinkNode
impl UnsafeUnpin for CacheSymlinkNode
impl UnwindSafe for CacheSymlinkNode
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