pub struct RustcAction {
pub digest: CacheDigest,
pub bytes: Vec<u8>,
}Expand description
Canonical action descriptor and its content digest.
Fields§
§digest: CacheDigestDigest of bytes, used as the action-cache key.
bytes: Vec<u8>Canonical serialized action descriptor.
Trait Implementations§
Source§impl Clone for RustcAction
impl Clone for RustcAction
Source§fn clone(&self) -> RustcAction
fn clone(&self) -> RustcAction
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 RustcAction
impl Debug for RustcAction
impl Eq for RustcAction
Source§impl PartialEq for RustcAction
impl PartialEq for RustcAction
impl StructuralPartialEq for RustcAction
Auto Trait Implementations§
impl Freeze for RustcAction
impl RefUnwindSafe for RustcAction
impl Send for RustcAction
impl Sync for RustcAction
impl Unpin for RustcAction
impl UnsafeUnpin for RustcAction
impl UnwindSafe for RustcAction
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