Struct rich_sdl2_rust::file::RwOps
source · pub struct RwOps<'a> { /* private fields */ }
Expand description
A file handler, how to read and write from file on SDL2.
Implementations§
source§impl<'a> RwOps<'a>
impl<'a> RwOps<'a>
sourcepub unsafe fn ptr(&self) -> NonNull<SDL_RWops>
pub unsafe fn ptr(&self) -> NonNull<SDL_RWops>
Returns the raw pointer of the file handler.
§Safety
Dereferencing the pointer and using the field is not recommended. Please use carefully.
sourcepub fn from_mem(buf: &'a [u8]) -> Result<Self>
pub fn from_mem(buf: &'a [u8]) -> Result<Self>
Constructs from the buffer &[u8]
.
§Errors
Returns Err
if failed to make it a read-only memory buffer.
sourcepub fn from_mem_mut(buf: &'a mut [u8]) -> Result<Self>
pub fn from_mem_mut(buf: &'a mut [u8]) -> Result<Self>
Constructs from the mutable buffer &mut [u8]
.
§Errors
Returns Err
if failed to make it a read-write memory buffer.
sourcepub fn tell(&mut self) -> Result<u64>
pub fn tell(&mut self) -> Result<u64>
Returns the current position of seeking.
§Errors
Returns Err
if failed to seek to get the current position.
sourcepub fn write_be16(&mut self, value: u16) -> bool
pub fn write_be16(&mut self, value: u16) -> bool
Writes the big endian 16-bits value.
sourcepub fn write_le16(&mut self, value: u16) -> bool
pub fn write_le16(&mut self, value: u16) -> bool
Writes the little endian 16-bits value.
sourcepub fn write_be32(&mut self, value: u32) -> bool
pub fn write_be32(&mut self, value: u32) -> bool
Writes the big endian 32-bits value.
sourcepub fn write_le32(&mut self, value: u32) -> bool
pub fn write_le32(&mut self, value: u32) -> bool
Writes the little endian 32-bits value.
sourcepub fn write_be64(&mut self, value: u64) -> bool
pub fn write_be64(&mut self, value: u64) -> bool
Writes the big endian 64-bits value.
sourcepub fn write_le64(&mut self, value: u64) -> bool
pub fn write_le64(&mut self, value: u64) -> bool
Writes the little endian 64-bits value.
Trait Implementations§
source§impl Read for RwOps<'_>
impl Read for RwOps<'_>
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
1.36.0 · source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like
read
, except that it reads into a slice of buffers. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into
buf
. Read more1.0.0 · source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to
buf
. Read more1.6.0 · source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill
buf
. Read moresource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Read the exact number of bytes required to fill
cursor
. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adaptor for this instance of
Read
. Read moresource§impl Seek for RwOps<'_>
impl Seek for RwOps<'_>
source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
Seek to an offset, in bytes, in a stream. Read more
1.55.0 · source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Rewind to the beginning of a stream. Read more
source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
🔬This is a nightly-only experimental API. (
seek_stream_len
)Returns the length of this stream (in bytes). Read more
source§impl Write for RwOps<'_>
impl Write for RwOps<'_>
source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RwOps<'a>
impl<'a> !Send for RwOps<'a>
impl<'a> !Sync for RwOps<'a>
impl<'a> Unpin for RwOps<'a>
impl<'a> !UnwindSafe for RwOps<'a>
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