pub struct ParsedBuildVariables<'a> {
pub all_items: BTreeMap<&'a str, &'a str>,
pub cargo_items: BTreeMap<&'a str, &'a str>,
pub rustc_items: BTreeMap<&'a str, &'a str>,
pub build_host: BTreeMap<&'a str, &'a str>,
pub git_items: BTreeMap<&'a str, &'a str>,
pub grouped: BTreeMap<&'a str, BTreeMap<&'a str, &'a str>>,
}
Fields§
§all_items: BTreeMap<&'a str, &'a str>
§cargo_items: BTreeMap<&'a str, &'a str>
§rustc_items: BTreeMap<&'a str, &'a str>
§build_host: BTreeMap<&'a str, &'a str>
§git_items: BTreeMap<&'a str, &'a str>
§grouped: BTreeMap<&'a str, BTreeMap<&'a str, &'a str>>
Trait Implementations§
Source§impl<'a> Clone for ParsedBuildVariables<'a>
impl<'a> Clone for ParsedBuildVariables<'a>
Source§fn clone(&self) -> ParsedBuildVariables<'a>
fn clone(&self) -> ParsedBuildVariables<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ParsedBuildVariables<'a>
impl<'a> Debug for ParsedBuildVariables<'a>
Source§impl<'a> Default for ParsedBuildVariables<'a>
impl<'a> Default for ParsedBuildVariables<'a>
Source§fn default() -> ParsedBuildVariables<'a>
fn default() -> ParsedBuildVariables<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for ParsedBuildVariables<'a>
impl<'a> PartialEq for ParsedBuildVariables<'a>
impl<'a> Eq for ParsedBuildVariables<'a>
impl<'a> StructuralPartialEq for ParsedBuildVariables<'a>
Auto Trait Implementations§
impl<'a> Freeze for ParsedBuildVariables<'a>
impl<'a> RefUnwindSafe for ParsedBuildVariables<'a>
impl<'a> Send for ParsedBuildVariables<'a>
impl<'a> Sync for ParsedBuildVariables<'a>
impl<'a> Unpin for ParsedBuildVariables<'a>
impl<'a> UnwindSafe for ParsedBuildVariables<'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