pub struct ISearchFolderItemFactory(/* private fields */);
Implementations§
Source§impl ISearchFolderItemFactory
impl ISearchFolderItemFactory
pub unsafe fn SetDisplayName<'a>( &self, pszdisplayname: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn SetFolderTypeID<'a>( &self, ftid: impl IntoParam<'a, Guid>, ) -> Result<()>
pub unsafe fn SetFolderLogicalViewMode( &self, flvm: FOLDERLOGICALVIEWMODE, ) -> Result<()>
pub unsafe fn SetIconSize(&self, iiconsize: i32) -> Result<()>
pub unsafe fn SetVisibleColumns( &self, cvisiblecolumns: u32, rgkey: *const PROPERTYKEY, ) -> Result<()>
pub unsafe fn SetSortColumns( &self, csortcolumns: u32, rgsortcolumns: *mut SORTCOLUMN, ) -> Result<()>
pub unsafe fn SetGroupColumn(&self, keygroup: *const PROPERTYKEY) -> Result<()>
pub unsafe fn SetStacks( &self, cstackkeys: u32, rgstackkeys: *mut PROPERTYKEY, ) -> Result<()>
pub unsafe fn SetScope<'a>( &self, psiascope: impl IntoParam<'a, IShellItemArray>, ) -> Result<()>
pub unsafe fn SetCondition<'a>( &self, pcondition: impl IntoParam<'a, ICondition>, ) -> Result<()>
pub unsafe fn GetShellItem<T: Interface>(&self) -> Result<T>
pub unsafe fn GetIDList(&self) -> Result<*mut ITEMIDLIST>
Trait Implementations§
Source§impl Clone for ISearchFolderItemFactory
impl Clone for ISearchFolderItemFactory
Source§fn clone(&self) -> ISearchFolderItemFactory
fn clone(&self) -> ISearchFolderItemFactory
Returns a copy 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 moreSource§impl Debug for ISearchFolderItemFactory
impl Debug for ISearchFolderItemFactory
Source§impl From<&ISearchFolderItemFactory> for IUnknown
impl From<&ISearchFolderItemFactory> for IUnknown
Source§fn from(value: &ISearchFolderItemFactory) -> Self
fn from(value: &ISearchFolderItemFactory) -> Self
Converts to this type from the input type.
Source§impl From<ISearchFolderItemFactory> for IUnknown
impl From<ISearchFolderItemFactory> for IUnknown
Source§fn from(value: ISearchFolderItemFactory) -> Self
fn from(value: ISearchFolderItemFactory) -> Self
Converts to this type from the input type.
Source§impl Interface for ISearchFolderItemFactory
impl Interface for ISearchFolderItemFactory
const IID: Guid
type Vtable = ISearchFolderItemFactory_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for ISearchFolderItemFactory
impl PartialEq for ISearchFolderItemFactory
impl Eq for ISearchFolderItemFactory
impl StructuralPartialEq for ISearchFolderItemFactory
Auto Trait Implementations§
impl Freeze for ISearchFolderItemFactory
impl RefUnwindSafe for ISearchFolderItemFactory
impl !Send for ISearchFolderItemFactory
impl !Sync for ISearchFolderItemFactory
impl Unpin for ISearchFolderItemFactory
impl UnwindSafe for ISearchFolderItemFactory
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
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