pub struct ICoreWebView2HttpResponseHeaders(/* private fields */);
Implementations§
Source§impl ICoreWebView2HttpResponseHeaders
impl ICoreWebView2HttpResponseHeaders
pub unsafe fn AppendHeader<'a>( &self, name: impl IntoParam<'a, PWSTR>, value: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn Contains<'a>( &self, name: impl IntoParam<'a, PWSTR>, contains: *mut BOOL, ) -> Result<()>
pub unsafe fn GetHeader<'a>( &self, name: impl IntoParam<'a, PWSTR>, value: *mut PWSTR, ) -> Result<()>
pub unsafe fn GetHeaders<'a>( &self, name: impl IntoParam<'a, PWSTR>, ) -> Result<ICoreWebView2HttpHeadersCollectionIterator>
pub unsafe fn GetIterator( &self, ) -> Result<ICoreWebView2HttpHeadersCollectionIterator>
Trait Implementations§
Source§impl Clone for ICoreWebView2HttpResponseHeaders
impl Clone for ICoreWebView2HttpResponseHeaders
Source§fn clone(&self) -> ICoreWebView2HttpResponseHeaders
fn clone(&self) -> ICoreWebView2HttpResponseHeaders
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 From<&ICoreWebView2HttpResponseHeaders> for IUnknown
impl From<&ICoreWebView2HttpResponseHeaders> for IUnknown
Source§fn from(value: &ICoreWebView2HttpResponseHeaders) -> Self
fn from(value: &ICoreWebView2HttpResponseHeaders) -> Self
Converts to this type from the input type.
Source§impl From<ICoreWebView2HttpResponseHeaders> for IUnknown
impl From<ICoreWebView2HttpResponseHeaders> for IUnknown
Source§fn from(value: ICoreWebView2HttpResponseHeaders) -> Self
fn from(value: ICoreWebView2HttpResponseHeaders) -> Self
Converts to this type from the input type.
Source§impl Interface for ICoreWebView2HttpResponseHeaders
impl Interface for ICoreWebView2HttpResponseHeaders
Source§impl PartialEq for ICoreWebView2HttpResponseHeaders
impl PartialEq for ICoreWebView2HttpResponseHeaders
Source§fn eq(&self, other: &ICoreWebView2HttpResponseHeaders) -> bool
fn eq(&self, other: &ICoreWebView2HttpResponseHeaders) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ICoreWebView2HttpResponseHeaders
impl StructuralPartialEq for ICoreWebView2HttpResponseHeaders
Auto Trait Implementations§
impl Freeze for ICoreWebView2HttpResponseHeaders
impl RefUnwindSafe for ICoreWebView2HttpResponseHeaders
impl !Send for ICoreWebView2HttpResponseHeaders
impl !Sync for ICoreWebView2HttpResponseHeaders
impl Unpin for ICoreWebView2HttpResponseHeaders
impl UnwindSafe for ICoreWebView2HttpResponseHeaders
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