pub struct CcActionInput {
pub path: PathBuf,
pub digest: CacheDigest,
}Expand description
One file input paired with the digest used in the action key.
Fields§
§path: PathBufAbsolute host path used to read and verify the input, or an include-manifest pseudo-path.
digest: CacheDigestDigest of the input contents, or of the directory’s name manifest.
Trait Implementations§
Source§impl Clone for CcActionInput
impl Clone for CcActionInput
Source§fn clone(&self) -> CcActionInput
fn clone(&self) -> CcActionInput
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 CcActionInput
impl Debug for CcActionInput
impl Eq for CcActionInput
Source§impl PartialEq for CcActionInput
impl PartialEq for CcActionInput
impl StructuralPartialEq for CcActionInput
Auto Trait Implementations§
impl Freeze for CcActionInput
impl RefUnwindSafe for CcActionInput
impl Send for CcActionInput
impl Sync for CcActionInput
impl Unpin for CcActionInput
impl UnsafeUnpin for CcActionInput
impl UnwindSafe for CcActionInput
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