pub struct Selected {
pub targets: Vec<Target>,
pub vendor: usize,
pub env: usize,
pub concealed: Vec<Concealed>,
}Expand description
The targets a Selection picks out of an Enumeration, and what it left behind.
Fields§
§targets: Vec<Target>What to remove, untracked before ignored.
vendor: usizeHow many entries were left alone because they are vendored and vendor was not opted in.
env: usizeHow many entries were left alone because they are env files and env was not opted in.
concealed: Vec<Concealed>Entries left alone because of what is under them. Named rather than counted, because the reason is one level down and a count would send the reader looking for it.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Selected
impl RefUnwindSafe for Selected
impl Send for Selected
impl Sync for Selected
impl Unpin for Selected
impl UnsafeUnpin for Selected
impl UnwindSafe for Selected
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more