pub struct Folder3(/* private fields */);
Implementations§
Source§impl Folder3
impl Folder3
pub unsafe fn GetTypeInfoCount(&self) -> Result<u32>
pub unsafe fn GetTypeInfo(&self, itinfo: u32, lcid: u32) -> Result<ITypeInfo>
pub unsafe fn GetIDsOfNames( &self, riid: *const Guid, rgsznames: *mut PWSTR, cnames: u32, lcid: u32, rgdispid: *mut i32, ) -> Result<()>
pub unsafe fn Invoke( &self, dispidmember: i32, riid: *const Guid, lcid: u32, wflags: u16, pdispparams: *mut DISPPARAMS, pvarresult: *mut VARIANT, pexcepinfo: *mut EXCEPINFO, puargerr: *mut u32, ) -> Result<()>
pub unsafe fn get_Title(&self) -> Result<BSTR>
pub unsafe fn get_Application(&self) -> Result<IDispatch>
pub unsafe fn get_Parent(&self) -> Result<IDispatch>
pub unsafe fn get_ParentFolder(&self) -> Result<Folder>
pub unsafe fn Items(&self) -> Result<FolderItems>
pub unsafe fn ParseName<'a>( &self, bname: impl IntoParam<'a, BSTR>, ) -> Result<FolderItem>
pub unsafe fn NewFolder<'a>( &self, bname: impl IntoParam<'a, BSTR>, voptions: impl IntoParam<'a, VARIANT>, ) -> Result<()>
pub unsafe fn MoveHere<'a>( &self, vitem: impl IntoParam<'a, VARIANT>, voptions: impl IntoParam<'a, VARIANT>, ) -> Result<()>
pub unsafe fn CopyHere<'a>( &self, vitem: impl IntoParam<'a, VARIANT>, voptions: impl IntoParam<'a, VARIANT>, ) -> Result<()>
pub unsafe fn GetDetailsOf<'a>( &self, vitem: impl IntoParam<'a, VARIANT>, icolumn: i32, ) -> Result<BSTR>
pub unsafe fn get_Self(&self) -> Result<FolderItem>
pub unsafe fn get_OfflineStatus(&self) -> Result<i32>
pub unsafe fn Synchronize(&self) -> Result<()>
pub unsafe fn get_HaveToShowWebViewBarricade(&self) -> Result<i16>
pub unsafe fn DismissedWebViewBarricade(&self) -> Result<()>
pub unsafe fn get_ShowWebViewBarricade(&self) -> Result<i16>
pub unsafe fn put_ShowWebViewBarricade( &self, bshowwebviewbarricade: i16, ) -> Result<()>
Trait Implementations§
Source§impl Interface for Folder3
impl Interface for Folder3
const IID: Guid
type Vtable = Folder3_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
impl Eq for Folder3
impl StructuralPartialEq for Folder3
Auto Trait Implementations§
impl Freeze for Folder3
impl RefUnwindSafe for Folder3
impl !Send for Folder3
impl !Sync for Folder3
impl Unpin for Folder3
impl UnwindSafe for Folder3
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