Struct makepad_widgets::shader::std::windows::Storage::Streams::IRandomAccessStream
#[repr(transparent)]pub struct IRandomAccessStream(/* private fields */);Implementations§
§impl IRandomAccessStream
impl IRandomAccessStream
pub fn Size(&self) -> Result<u64, Error>
pub fn SetSize(&self, value: u64) -> Result<(), Error>
pub fn GetInputStreamAt(&self, position: u64) -> Result<IInputStream, Error>
pub fn GetOutputStreamAt(&self, position: u64) -> Result<IOutputStream, Error>
pub fn Position(&self) -> Result<u64, Error>
pub fn Seek(&self, position: u64) -> Result<(), Error>
pub fn CloneStream(&self) -> Result<IRandomAccessStream, Error>
pub fn CanRead(&self) -> Result<bool, Error>
pub fn CanWrite(&self) -> Result<bool, Error>
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"
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"
pub fn FlushAsync(&self) -> Result<IAsyncOperation<bool>, Error>
pub fn FlushAsync(&self) -> Result<IAsyncOperation<bool>, Error>
Required features: "Foundation"
Trait Implementations§
§impl Clone for IRandomAccessStream
impl Clone for IRandomAccessStream
§fn clone(&self) -> IRandomAccessStream
fn clone(&self) -> IRandomAccessStream
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 IRandomAccessStream
impl ComInterface for IRandomAccessStream
fn as_unknown(&self) -> &IUnknown
§impl Debug for IRandomAccessStream
impl Debug for IRandomAccessStream
§impl Interface for IRandomAccessStream
impl Interface for IRandomAccessStream
type Vtable = IRandomAccessStream_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<IRandomAccessStream> for IRandomAccessStream
impl PartialEq<IRandomAccessStream> for IRandomAccessStream
§fn eq(&self, other: &IRandomAccessStream) -> bool
fn eq(&self, other: &IRandomAccessStream) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for IRandomAccessStream
Auto Trait Implementations§
impl RefUnwindSafe for IRandomAccessStream
impl !Send for IRandomAccessStream
impl !Sync for IRandomAccessStream
impl Unpin for IRandomAccessStream
impl UnwindSafe for IRandomAccessStream
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