pub struct DownloadTag {
pub name: String,
pub tag_type: u16,
pub mask: Vec<u8>,
}
Expand description
Download manifest tag
Fields§
§name: String
Tag name
tag_type: u16
Tag type (1 = locale, 2 = platform, etc.)
mask: Vec<u8>
Bitmask indicating which entries have this tag
Trait Implementations§
Source§impl Clone for DownloadTag
impl Clone for DownloadTag
Source§fn clone(&self) -> DownloadTag
fn clone(&self) -> DownloadTag
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 DownloadTag
impl RefUnwindSafe for DownloadTag
impl Send for DownloadTag
impl Sync for DownloadTag
impl Unpin for DownloadTag
impl UnwindSafe for DownloadTag
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