Struct windows::Win32::Globalization::IMLangStringAStr
pub struct IMLangStringAStr(/* private fields */);
Implementations§
§impl IMLangStringAStr
impl IMLangStringAStr
pub unsafe fn SetAStr( &self, ldestpos: i32, ldestlen: i32, ucodepage: u32, pszsrc: &[u8], pcchactual: Option<*mut i32>, plactuallen: Option<*mut i32>, ) -> Result<()>
pub unsafe fn SetStrBufA<P0>(
&self,
ldestpos: i32,
ldestlen: i32,
ucodepage: u32,
psrcbuf: P0,
pcchactual: Option<*mut i32>,
plactuallen: Option<*mut i32>,
) -> Result<()>where
P0: Param<IMLangStringBufA>,
pub unsafe fn GetAStr( &self, lsrcpos: i32, lsrclen: i32, ucodepagein: u32, pucodepageout: Option<*const u32>, pszdest: Option<&mut [u8]>, pcchactual: Option<*mut i32>, plactuallen: Option<*mut i32>, ) -> Result<()>
pub unsafe fn GetStrBufA( &self, lsrcpos: i32, lsrcmaxlen: i32, pudestcodepage: Option<*mut u32>, ppdestbuf: *mut Option<IMLangStringBufA>, pldestlen: Option<*mut i32>, ) -> Result<()>
pub unsafe fn LockAStr( &self, lsrcpos: i32, lsrclen: i32, lflags: i32, ucodepagein: u32, cchrequest: i32, pucodepageout: Option<*mut u32>, ppszdest: Option<*mut PSTR>, pcchdest: Option<*mut i32>, pldestlen: Option<*mut i32>, ) -> Result<()>
pub unsafe fn UnlockAStr( &self, pszsrc: &[u8], pcchactual: Option<*mut i32>, plactuallen: Option<*mut i32>, ) -> Result<()>
pub unsafe fn SetLocale( &self, ldestpos: i32, ldestlen: i32, locale: u32, ) -> Result<()>
pub unsafe fn GetLocale( &self, lsrcpos: i32, lsrcmaxlen: i32, plocale: Option<*mut u32>, pllocalepos: Option<*mut i32>, pllocalelen: Option<*mut i32>, ) -> Result<()>
Methods from Deref<Target = IMLangString>§
pub unsafe fn Sync<P0>(&self, fnoaccess: P0) -> Result<()>where
P0: Param<BOOL>,
pub unsafe fn GetLength(&self, pllen: Option<*mut i32>) -> Result<()>
pub unsafe fn SetMLStr<P0>(
&self,
ldestpos: i32,
ldestlen: i32,
psrcmlstr: P0,
lsrcpos: i32,
lsrclen: i32,
) -> Result<()>where
P0: Param<IUnknown>,
pub unsafe fn GetMLStr<P0>(
&self,
lsrcpos: i32,
lsrclen: i32,
punkouter: P0,
dwclscontext: u32,
piid: *const GUID,
ppdestmlstr: *mut Option<IUnknown>,
pldestpos: Option<*mut i32>,
pldestlen: Option<*mut i32>,
) -> Result<()>where
P0: Param<IUnknown>,
Trait Implementations§
§impl CanInto<IMLangString> for IMLangStringAStr
impl CanInto<IMLangString> for IMLangStringAStr
§impl CanInto<IUnknown> for IMLangStringAStr
impl CanInto<IUnknown> for IMLangStringAStr
§impl Clone for IMLangStringAStr
impl Clone for IMLangStringAStr
§fn clone(&self) -> IMLangStringAStr
fn clone(&self) -> IMLangStringAStr
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 more§impl Debug for IMLangStringAStr
impl Debug for IMLangStringAStr
§impl Deref for IMLangStringAStr
impl Deref for IMLangStringAStr
§impl From<&IMLangStringAStr> for &IMLangString
impl From<&IMLangStringAStr> for &IMLangString
§fn from(value: &IMLangStringAStr) -> Self
fn from(value: &IMLangStringAStr) -> Self
Converts to this type from the input type.
§impl From<&IMLangStringAStr> for &IUnknown
impl From<&IMLangStringAStr> for &IUnknown
§fn from(value: &IMLangStringAStr) -> Self
fn from(value: &IMLangStringAStr) -> Self
Converts to this type from the input type.
§impl From<IMLangStringAStr> for IMLangString
impl From<IMLangStringAStr> for IMLangString
§fn from(value: IMLangStringAStr) -> Self
fn from(value: IMLangStringAStr) -> Self
Converts to this type from the input type.
§impl From<IMLangStringAStr> for IUnknown
impl From<IMLangStringAStr> for IUnknown
§fn from(value: IMLangStringAStr) -> Self
fn from(value: IMLangStringAStr) -> Self
Converts to this type from the input type.
§impl Interface for IMLangStringAStr
impl Interface for IMLangStringAStr
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IMLangStringAStr
impl PartialEq for IMLangStringAStr
§fn eq(&self, other: &IMLangStringAStr) -> bool
fn eq(&self, other: &IMLangStringAStr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IMLangStringAStr
impl StructuralPartialEq for IMLangStringAStr
Auto Trait Implementations§
impl Freeze for IMLangStringAStr
impl RefUnwindSafe for IMLangStringAStr
impl !Send for IMLangStringAStr
impl !Sync for IMLangStringAStr
impl Unpin for IMLangStringAStr
impl UnwindSafe for IMLangStringAStr
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)