pub struct GrpIconDir {
pub reserved: u16,
pub icon_type: u16,
pub count: u16,
pub entries: Vec<GrpIconDirEntry>,
}Expand description
Represent a directory in a resource-encoded icon group.
See the Microsoft Icons article for a thorough explanation.
Fields§
§reserved: u16§icon_type: u16§count: u16§entries: Vec<GrpIconDirEntry>Implementations§
Source§impl GrpIconDir
impl GrpIconDir
Trait Implementations§
Source§impl Clone for GrpIconDir
impl Clone for GrpIconDir
Source§fn clone(&self) -> GrpIconDir
fn clone(&self) -> GrpIconDir
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 GrpIconDir
impl RefUnwindSafe for GrpIconDir
impl Send for GrpIconDir
impl Sync for GrpIconDir
impl Unpin for GrpIconDir
impl UnsafeUnpin for GrpIconDir
impl UnwindSafe for GrpIconDir
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