Skip to main content

Selection

Struct Selection 

Source
pub struct Selection {
    pub crt: String,
    pub sdk: String,
    pub files: Vec<Wanted>,
    pub cabs: Vec<Wanted>,
}
Expand description

Which files an MSVC sysroot for a set of architectures is made of.

Fields§

§crt: String

The Visual C++ release the CRT came from, such as 14.44.35220.

§sdk: String

The Windows SDK release, such as 10.0.26100.15.

§files: Vec<Wanted>

Every file, sorted by package and then by name so that two runs agree about the order.

§cabs: Vec<Wanted>

The cabinets the Windows SDK publishes, sorted by name, which is where the bytes the installers in Selection::files describe actually are.

All of them rather than the ones a target needs, because that is not a question this module can answer: an installer is a database and the cabinet it wants is a row in it. A caller that has read one looks the name up with Selection::cab and downloads what comes back.

Implementations§

Source§

impl Selection

Source

pub fn parse(text: &str, chips: &[Chip]) -> Result<Self, MsvcError>

Choose what to download out of an installer manifest.

chips is which architectures to get libraries for. The headers are shared, so a selection for four architectures is eight library packages and one of everything else.

§Errors

When the document does not parse, when it has no Visual C++ or no Windows SDK in it, and when a package or an installer the selection needs is not among its files.

Source

pub fn cab(&self, name: &str) -> Option<&Wanted>

The cabinet an installer named, or None for a name the Windows SDK does not publish.

The two documents spell it differently and neither spelling is wrong. An installer’s own table says d60d1d4a1b5da9e4d41b0bcb0b1dcb14.cab, because that is what it calls the file it wants, and the manifest says Installers\d60d1d4a1b5da9e4d41b0bcb0b1dcb14.cab, because that is where the Visual Studio installer would put it. So the comparison is on the last component and it ignores case, which costs nothing and is what a Windows file name means.

Source

pub fn size(&self) -> u64

How many bytes the files are, which is what a person is told before accepting.

The files and not the cabinets. A cabinet is downloaded only once an installer has named it, so a total that included all 149 of them would be several times what a run actually moves, and one that included none of them would be short by most of the Windows SDK. What is honest before anything has been read is the number this gives and a sentence saying the cabinets come after, which is what the caller prints.

Trait Implementations§

Source§

impl Clone for Selection

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Selection

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Selection

Source§

impl PartialEq for Selection

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Selection

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.