pub trait IDWriteRemoteFontFileStream_Impl: Sized + IDWriteFontFileStream_Impl {
    // Required methods
    fn GetLocalFileSize(&self) -> Result<u64>;
    fn GetFileFragmentLocality(
        &self,
        fileoffset: u64,
        fragmentsize: u64,
        islocal: *mut BOOL,
        partialsize: *mut u64
    ) -> Result<()>;
    fn GetLocality(&self) -> DWRITE_LOCALITY;
    fn BeginDownload(
        &self,
        downloadoperationid: *const GUID,
        filefragments: *const DWRITE_FILE_FRAGMENT,
        fragmentcount: u32
    ) -> Result<IDWriteAsyncResult>;
}

Required Methods§

fn GetLocalFileSize(&self) -> Result<u64>

fn GetFileFragmentLocality( &self, fileoffset: u64, fragmentsize: u64, islocal: *mut BOOL, partialsize: *mut u64 ) -> Result<()>

fn GetLocality(&self) -> DWRITE_LOCALITY

fn BeginDownload( &self, downloadoperationid: *const GUID, filefragments: *const DWRITE_FILE_FRAGMENT, fragmentcount: u32 ) -> Result<IDWriteAsyncResult>

Object Safety§

This trait is not object safe.

Implementors§