Struct makepad_widgets::shader::std::windows::Devices::Enumeration::DeviceThumbnail
#[repr(transparent)]pub struct DeviceThumbnail(/* private fields */);Implementations§
§impl DeviceThumbnail
impl DeviceThumbnail
pub fn ContentType(&self) -> Result<HSTRING, Error>
pub fn ContentType(&self) -> Result<HSTRING, Error>
Required features: "Storage_Streams"
pub fn ReadAsync<P0>(
&self,
buffer: P0,
count: u32,
options: InputStreamOptions
) -> Result<IAsyncOperationWithProgress<IBuffer, u32>, Error>where
P0: TryIntoParam<IBuffer>,
pub fn ReadAsync<P0>( &self, buffer: P0, count: u32, options: InputStreamOptions ) -> Result<IAsyncOperationWithProgress<IBuffer, u32>, Error>where P0: TryIntoParam<IBuffer>,
Required features: "Foundation", "Storage_Streams"
pub fn WriteAsync<P0>(
&self,
buffer: P0
) -> Result<IAsyncOperationWithProgress<u32, u32>, Error>where
P0: TryIntoParam<IBuffer>,
pub fn WriteAsync<P0>( &self, buffer: P0 ) -> Result<IAsyncOperationWithProgress<u32, u32>, Error>where P0: TryIntoParam<IBuffer>,
Required features: "Foundation", "Storage_Streams"
pub fn FlushAsync(&self) -> Result<IAsyncOperation<bool>, Error>
pub fn FlushAsync(&self) -> Result<IAsyncOperation<bool>, Error>
Required features: "Foundation", "Storage_Streams"
pub fn GetInputStreamAt(&self, position: u64) -> Result<IInputStream, Error>
pub fn GetInputStreamAt(&self, position: u64) -> Result<IInputStream, Error>
Required features: "Storage_Streams"
pub fn GetOutputStreamAt(&self, position: u64) -> Result<IOutputStream, Error>
pub fn GetOutputStreamAt(&self, position: u64) -> Result<IOutputStream, Error>
Required features: "Storage_Streams"
pub fn CloneStream(&self) -> Result<IRandomAccessStream, Error>
pub fn CloneStream(&self) -> Result<IRandomAccessStream, Error>
Required features: "Storage_Streams"
Trait Implementations§
§impl Clone for DeviceThumbnail
impl Clone for DeviceThumbnail
§fn clone(&self) -> DeviceThumbnail
fn clone(&self) -> DeviceThumbnail
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 ComInterface for DeviceThumbnail
impl ComInterface for DeviceThumbnail
§const IID: GUID = <super::super::Storage::Streams::IRandomAccessStreamWithContentType as
::windows_core::ComInterface>::IID
const IID: GUID = <super::super::Storage::Streams::IRandomAccessStreamWithContentType as ::windows_core::ComInterface>::IID
A unique identifier representing this interface.
fn as_unknown(&self) -> &IUnknown
§impl Debug for DeviceThumbnail
impl Debug for DeviceThumbnail
§impl Interface for DeviceThumbnail
impl Interface for DeviceThumbnail
type Vtable = IRandomAccessStreamWithContentType_Vtbl
§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.
§impl PartialEq<DeviceThumbnail> for DeviceThumbnail
impl PartialEq<DeviceThumbnail> for DeviceThumbnail
§fn eq(&self, other: &DeviceThumbnail) -> bool
fn eq(&self, other: &DeviceThumbnail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DeviceThumbnail
impl Send for DeviceThumbnail
impl Sync for DeviceThumbnail
Auto Trait Implementations§
impl RefUnwindSafe for DeviceThumbnail
impl Unpin for DeviceThumbnail
impl UnwindSafe for DeviceThumbnail
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