pub struct AlignmentInputs<'a> {
pub manifest: &'a PinManifest,
pub host_raw: &'a str,
pub required_raw: &'a BTreeMap<String, String>,
}Expand description
Pure inputs to evaluate; the I/O layer gathers --version outputs.
Fields§
§manifest: &'a PinManifest§host_raw: &'a strRaw host version string (e.g. compiled CARGO_PKG_VERSION).
required_raw: &'a BTreeMap<String, String>bin -> raw <bin> --version output (or an error string if missing).
Auto Trait Implementations§
impl<'a> Freeze for AlignmentInputs<'a>
impl<'a> RefUnwindSafe for AlignmentInputs<'a>
impl<'a> Send for AlignmentInputs<'a>
impl<'a> Sync for AlignmentInputs<'a>
impl<'a> Unpin for AlignmentInputs<'a>
impl<'a> UnsafeUnpin for AlignmentInputs<'a>
impl<'a> UnwindSafe for AlignmentInputs<'a>
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