Struct devela::_std::io::BorrowedCursor
source · pub struct BorrowedCursor<'a> { /* private fields */ }
core_io_borrowed_buf
)Expand description
A writeable view of the unfilled portion of a BorrowedBuf
.
Provides access to the initialized and uninitialized parts of the underlying BorrowedBuf
.
Data can be written directly to the cursor by using append
or
indirectly by getting a slice of part or all of the cursor and writing into the slice. In the
indirect case, the caller must call advance
after writing to inform
the cursor how many bytes have been written.
Once data is written to the cursor, it becomes part of the filled portion of the underlying
BorrowedBuf
and can no longer be accessed or re-written by the cursor. I.e., the cursor tracks
the unfilled part of the underlying BorrowedBuf
.
The lifetime 'a
is a bound on the lifetime of the underlying buffer (which means it is a bound
on the data in that buffer by transitivity).
Implementations§
source§impl<'a> BorrowedCursor<'a>
impl<'a> BorrowedCursor<'a>
sourcepub fn reborrow<'this>(&'this mut self) -> BorrowedCursor<'this> ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn reborrow<'this>(&'this mut self) -> BorrowedCursor<'this> ⓘ
core_io_borrowed_buf
)mem
only.Reborrow this cursor by cloning it with a smaller lifetime.
Since a cursor maintains unique access to its underlying buffer, the borrowed cursor is not accessible while the new cursor exists.
sourcepub fn capacity(&self) -> usize
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn capacity(&self) -> usize
core_io_borrowed_buf
)mem
only.Returns the available space in the cursor.
sourcepub fn written(&self) -> usize
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn written(&self) -> usize
core_io_borrowed_buf
)mem
only.Returns the number of bytes written to this cursor since it was created from a BorrowedBuf
.
Note that if this cursor is a reborrowed clone of another, then the count returned is the count written via either cursor, not the count since the cursor was reborrowed.
sourcepub fn init_ref(&self) -> &[u8] ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn init_ref(&self) -> &[u8] ⓘ
core_io_borrowed_buf
)mem
only.Returns a shared reference to the initialized portion of the cursor.
sourcepub fn init_mut(&mut self) -> &mut [u8] ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn init_mut(&mut self) -> &mut [u8] ⓘ
core_io_borrowed_buf
)mem
only.Returns a mutable reference to the initialized portion of the cursor.
sourcepub fn uninit_mut(&mut self) -> &mut [MaybeUninit<u8>]
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn uninit_mut(&mut self) -> &mut [MaybeUninit<u8>]
core_io_borrowed_buf
)mem
only.Returns a mutable reference to the uninitialized part of the cursor.
It is safe to uninitialize any of these bytes.
sourcepub unsafe fn as_mut(&mut self) -> &mut [MaybeUninit<u8>]
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub unsafe fn as_mut(&mut self) -> &mut [MaybeUninit<u8>]
core_io_borrowed_buf
)mem
only.Returns a mutable reference to the whole cursor.
Safety
The caller must not uninitialize any bytes in the initialized portion of the cursor.
sourcepub unsafe fn advance(&mut self, n: usize) -> &mut BorrowedCursor<'a> ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub unsafe fn advance(&mut self, n: usize) -> &mut BorrowedCursor<'a> ⓘ
core_io_borrowed_buf
)mem
only.Advance the cursor by asserting that n
bytes have been filled.
After advancing, the n
bytes are no longer accessible via the cursor and can only be
accessed via the underlying buffer. I.e., the buffer’s filled portion grows by n
elements
and its unfilled portion (and the capacity of this cursor) shrinks by n
elements.
Safety
The caller must ensure that the first n
bytes of the cursor have been properly
initialised.
sourcepub fn ensure_init(&mut self) -> &mut BorrowedCursor<'a> ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub fn ensure_init(&mut self) -> &mut BorrowedCursor<'a> ⓘ
core_io_borrowed_buf
)mem
only.Initializes all bytes in the cursor.
sourcepub unsafe fn set_init(&mut self, n: usize) -> &mut BorrowedCursor<'a> ⓘ
🔬This is a nightly-only experimental API. (core_io_borrowed_buf
)Available on crate feature mem
only.
pub unsafe fn set_init(&mut self, n: usize) -> &mut BorrowedCursor<'a> ⓘ
core_io_borrowed_buf
)mem
only.Asserts that the first n
unfilled bytes of the cursor are initialized.
BorrowedBuf
assumes that bytes are never de-initialized, so this method does nothing when
called with fewer bytes than are already known to be initialized.
Safety
The caller must ensure that the first n
bytes of the buffer have already been initialized.
Trait Implementations§
source§impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for BorrowedCursor<'a>
source§impl<'a> Write for BorrowedCursor<'a>
impl<'a> Write for BorrowedCursor<'a>
source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)Auto Trait Implementations§
impl<'a> RefUnwindSafe for BorrowedCursor<'a>
impl<'a> Send for BorrowedCursor<'a>
impl<'a> Sync for BorrowedCursor<'a>
impl<'a> Unpin for BorrowedCursor<'a>
impl<'a> !UnwindSafe for BorrowedCursor<'a>
Blanket Implementations§
source§impl<T> Also for T
impl<T> Also for T
source§impl<T> AnyExt for Twhere
T: Any,
impl<T> AnyExt for Twhere T: Any,
source§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
any
only.self
. Read moresource§fn as_any_ref(&self) -> &dyn Anywhere
Self: Sized,
fn as_any_ref(&self) -> &dyn Anywhere Self: Sized,
any
only.source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere Self: Sized,
any
only.source§impl<T, Res> Apply<Res> for Twhere
T: ?Sized,
impl<T, Res> Apply<Res> for Twhere T: ?Sized,
source§fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Reswhere
Self: Sized,
fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Reswhere Self: Sized,
result
only.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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
source§impl<T> Mem for Twhere
T: ?Sized,
impl<T> Mem for Twhere T: ?Sized,
source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
mem
only.source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
mem
only.true
if dropping values of this type matters.source§fn mem_drop(self)where
Self: Sized,
fn mem_drop(self)where Self: Sized,
mem
only.self
by running its destructor.source§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where Self: Sized,
mem
only.self
without running its destructor.source§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere Self: Sized,
mem
only.self
with other, returning the previous value of self
.source§fn mem_take(&mut self) -> Selfwhere
Self: Default,
fn mem_take(&mut self) -> Selfwhere Self: Default,
mem
only.self
with its default value, returning the previous value of self
.source§fn mem_swap(&mut self, other: &mut Self)where
Self: Sized,
fn mem_swap(&mut self, other: &mut Self)where Self: Sized,
mem
only.self
and other
without deinitializing either one.source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
source§impl<T> Size for T
impl<T> Size for T
source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
mem
only.source§const BYTE_SIZE: usize = _
const BYTE_SIZE: usize = _
mem
only.source§const PTR_SIZE: usize = 4usize
const PTR_SIZE: usize = 4usize
mem
only.source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
mem
only.