#[repr(C)]pub struct SHFILEINFO {
pub hIcon: HICON,
pub iIcon: i32,
/* private fields */
}
Available on crate feature
shell
only.Expand description
SHFILEINFO
struct.
Fields§
§hIcon: HICON
§iIcon: i32
Implementations§
Source§impl SHFILEINFO
impl SHFILEINFO
Sourcepub fn szDisplayName(&self) -> String
pub fn szDisplayName(&self) -> String
Returns the string field.
Sourcepub fn set_szDisplayName(&mut self, text: &str)
pub fn set_szDisplayName(&mut self, text: &str)
Sets the string field.
Sourcepub fn szTypeName(&self) -> String
pub fn szTypeName(&self) -> String
Returns the string field.
Sourcepub fn set_szTypeName(&mut self, text: &str)
pub fn set_szTypeName(&mut self, text: &str)
Sets the string field.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SHFILEINFO
impl RefUnwindSafe for SHFILEINFO
impl Send for SHFILEINFO
impl !Sync for SHFILEINFO
impl Unpin for SHFILEINFO
impl UnwindSafe for SHFILEINFO
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