pub struct IRichEditOle(/* private fields */);
Implementations§
Source§impl IRichEditOle
impl IRichEditOle
pub unsafe fn GetClientSite(&self) -> Result<IOleClientSite>
pub unsafe fn GetObjectCount(&self) -> i32
pub unsafe fn GetLinkCount(&self) -> i32
pub unsafe fn GetObject( &self, iob: i32, lpreobject: *mut REOBJECT, dwflags: RICH_EDIT_GET_OBJECT_FLAGS, ) -> Result<()>
pub unsafe fn InsertObject(&self, lpreobject: *mut REOBJECT) -> Result<()>
pub unsafe fn ConvertObject<'a>( &self, iob: i32, rclsidnew: *const Guid, lpstrusertypenew: impl IntoParam<'a, PSTR>, ) -> Result<()>
pub unsafe fn ActivateAs( &self, rclsid: *const Guid, rclsidas: *const Guid, ) -> Result<()>
pub unsafe fn SetHostNames<'a>( &self, lpstrcontainerapp: impl IntoParam<'a, PSTR>, lpstrcontainerobj: impl IntoParam<'a, PSTR>, ) -> Result<()>
pub unsafe fn SetLinkAvailable<'a>( &self, iob: i32, favailable: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn SetDvaspect(&self, iob: i32, dvaspect: u32) -> Result<()>
pub unsafe fn HandsOffStorage(&self, iob: i32) -> Result<()>
pub unsafe fn SaveCompleted<'a>( &self, iob: i32, lpstg: impl IntoParam<'a, IStorage>, ) -> Result<()>
pub unsafe fn InPlaceDeactivate(&self) -> Result<()>
pub unsafe fn ContextSensitiveHelp<'a>( &self, fentermode: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn GetClipboardData( &self, lpchrg: *mut CHARRANGE, reco: u32, lplpdataobj: *mut Option<IDataObject>, ) -> Result<()>
pub unsafe fn ImportDataObject<'a>( &self, lpdataobj: impl IntoParam<'a, IDataObject>, cf: u16, hmetapict: isize, ) -> Result<()>
Trait Implementations§
Source§impl Clone for IRichEditOle
impl Clone for IRichEditOle
Source§fn clone(&self) -> IRichEditOle
fn clone(&self) -> IRichEditOle
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 IRichEditOle
impl Debug for IRichEditOle
Source§impl From<&IRichEditOle> for IUnknown
impl From<&IRichEditOle> for IUnknown
Source§fn from(value: &IRichEditOle) -> Self
fn from(value: &IRichEditOle) -> Self
Converts to this type from the input type.
Source§impl From<IRichEditOle> for IUnknown
impl From<IRichEditOle> for IUnknown
Source§fn from(value: IRichEditOle) -> Self
fn from(value: IRichEditOle) -> Self
Converts to this type from the input type.
Source§impl Interface for IRichEditOle
impl Interface for IRichEditOle
Source§impl PartialEq for IRichEditOle
impl PartialEq for IRichEditOle
impl Eq for IRichEditOle
impl StructuralPartialEq for IRichEditOle
Auto Trait Implementations§
impl Freeze for IRichEditOle
impl RefUnwindSafe for IRichEditOle
impl !Send for IRichEditOle
impl !Sync for IRichEditOle
impl Unpin for IRichEditOle
impl UnwindSafe for IRichEditOle
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