pub struct InstallTag {
pub name: String,
pub tag_type: u16,
pub files_mask: Vec<bool>,
}
Expand description
Install tag information
Fields§
§name: String
Tag name (e.g., “Windows”, “Mac”, “enUS”)
tag_type: u16
Tag type/flags
files_mask: Vec<bool>
Bitmask indicating which files have this tag
Trait Implementations§
Source§impl Clone for InstallTag
impl Clone for InstallTag
Source§fn clone(&self) -> InstallTag
fn clone(&self) -> InstallTag
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for InstallTag
impl RefUnwindSafe for InstallTag
impl Send for InstallTag
impl Sync for InstallTag
impl Unpin for InstallTag
impl UnwindSafe for InstallTag
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