pub struct PulledToolchain {
pub reference: String,
pub digest: String,
}Expand description
Outcome of a successful try_pull_toolchain.
Fields§
§reference: StringThe immutable reference the toolchain was pulled from.
digest: StringThe manifest digest (sha256:...) the pull was pinned to.
Trait Implementations§
Source§impl Clone for PulledToolchain
impl Clone for PulledToolchain
Source§fn clone(&self) -> PulledToolchain
fn clone(&self) -> PulledToolchain
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 moreAuto Trait Implementations§
impl Freeze for PulledToolchain
impl RefUnwindSafe for PulledToolchain
impl Send for PulledToolchain
impl Sync for PulledToolchain
impl Unpin for PulledToolchain
impl UnsafeUnpin for PulledToolchain
impl UnwindSafe for PulledToolchain
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