pub struct IUriBuilder(/* private fields */);Implementations§
Source§impl IUriBuilder
impl IUriBuilder
pub unsafe fn CreateUriSimple( &self, dwallowencodingpropertymask: u32, dwreserved: usize, ppiuri: *mut Option<IUri>, ) -> ErrorCode
pub unsafe fn CreateUri( &self, dwcreateflags: u32, dwallowencodingpropertymask: u32, dwreserved: usize, ppiuri: *mut Option<IUri>, ) -> ErrorCode
pub unsafe fn CreateUriWithFlags( &self, dwcreateflags: u32, dwuribuilderflags: u32, dwallowencodingpropertymask: u32, dwreserved: usize, ppiuri: *mut Option<IUri>, ) -> ErrorCode
pub unsafe fn GetIUri(&self, ppiuri: *mut Option<IUri>) -> ErrorCode
pub unsafe fn SetIUri<'a, T0__: IntoParam<'a, IUri>>( &self, piuri: T0__, ) -> ErrorCode
pub unsafe fn GetFragment( &self, pcchfragment: *mut u32, ppwzfragment: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetHost( &self, pcchhost: *mut u32, ppwzhost: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetPassword( &self, pcchpassword: *mut u32, ppwzpassword: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetPath( &self, pcchpath: *mut u32, ppwzpath: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetPort( &self, pfhasport: *mut BOOL, pdwport: *mut u32, ) -> ErrorCode
pub unsafe fn GetQuery( &self, pcchquery: *mut u32, ppwzquery: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetSchemeName( &self, pcchschemename: *mut u32, ppwzschemename: *mut PWSTR, ) -> ErrorCode
pub unsafe fn GetUserName( &self, pcchusername: *mut u32, ppwzusername: *mut PWSTR, ) -> ErrorCode
pub unsafe fn SetFragment<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetHost<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetPassword<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetPath<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetPort<'a, T0__: IntoParam<'a, BOOL>>( &self, fhasport: T0__, dwnewvalue: u32, ) -> ErrorCode
pub unsafe fn SetQuery<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetSchemeName<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn SetUserName<'a, T0__: IntoParam<'a, PWSTR>>( &self, pwznewvalue: T0__, ) -> ErrorCode
pub unsafe fn RemoveProperties(&self, dwpropertymask: u32) -> ErrorCode
pub unsafe fn HasBeenModified(&self, pfmodified: *mut BOOL) -> ErrorCode
Trait Implementations§
Source§impl Clone for IUriBuilder
impl Clone for IUriBuilder
Source§fn clone(&self) -> IUriBuilder
fn clone(&self) -> IUriBuilder
Returns a duplicate 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 IUriBuilder
impl Debug for IUriBuilder
Source§impl From<&IUriBuilder> for IUnknown
impl From<&IUriBuilder> for IUnknown
Source§fn from(value: &IUriBuilder) -> Self
fn from(value: &IUriBuilder) -> Self
Converts to this type from the input type.
Source§impl From<IUriBuilder> for IUnknown
impl From<IUriBuilder> for IUnknown
Source§fn from(value: IUriBuilder) -> Self
fn from(value: IUriBuilder) -> Self
Converts to this type from the input type.
Source§impl Interface for IUriBuilder
impl Interface for IUriBuilder
const IID: Guid
type Vtable = IUriBuilder_abi
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IUriBuilder
impl<'a> IntoParam<'a, IUnknown> for &'a IUriBuilder
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IUriBuilder
impl<'a> IntoParam<'a, IUnknown> for IUriBuilder
fn into_param(self) -> Param<'a, IUnknown>
Source§impl PartialEq for IUriBuilder
impl PartialEq for IUriBuilder
impl Eq for IUriBuilder
impl StructuralPartialEq for IUriBuilder
Auto Trait Implementations§
impl Freeze for IUriBuilder
impl RefUnwindSafe for IUriBuilder
impl !Send for IUriBuilder
impl !Sync for IUriBuilder
impl Unpin for IUriBuilder
impl UnwindSafe for IUriBuilder
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
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.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
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