pub struct BorrowedCursor<'a> { /* private fields */ }
core_io_borrowed_buf
)Expand description
A writeable view of the unfilled portion of a BorrowedBuf
.
The unfilled portion consists of an initialized and an uninitialized part; see BorrowedBuf
for details.
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
)
pub fn reborrow<'this>(&'this mut self) -> BorrowedCursor<'this> โ
core_io_borrowed_buf
)Reborrows 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
)
pub fn capacity(&self) -> usize
core_io_borrowed_buf
)Returns the available space in the cursor.
sourcepub fn written(&self) -> usize
๐ฌThis is a nightly-only experimental API. (core_io_borrowed_buf
)
pub fn written(&self) -> usize
core_io_borrowed_buf
)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
)
pub fn init_ref(&self) -> &[u8] โ
core_io_borrowed_buf
)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
)
pub fn init_mut(&mut self) -> &mut [u8] โ
core_io_borrowed_buf
)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
)
pub fn uninit_mut(&mut self) -> &mut [MaybeUninit<u8>]
core_io_borrowed_buf
)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
)
pub unsafe fn as_mut(&mut self) -> &mut [MaybeUninit<u8>]
core_io_borrowed_buf
)Returns a mutable reference to the whole cursor.
ยงSafety
The caller must not uninitialize any bytes in the initialized portion of the cursor.
sourcepub fn advance(&mut self, n: usize) -> &mut BorrowedCursor<'a> โ
๐ฌThis is a nightly-only experimental API. (core_io_borrowed_buf
)
pub fn advance(&mut self, n: usize) -> &mut BorrowedCursor<'a> โ
core_io_borrowed_buf
)Advances 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.
If less than n
bytes initialized (by the cursorโs point of view), set_init
should be
called first.
ยงPanics
Panics if there are less than n
bytes initialized.
sourcepub unsafe fn advance_unchecked(&mut self, n: usize) -> &mut BorrowedCursor<'a> โ
๐ฌThis is a nightly-only experimental API. (core_io_borrowed_buf
)
pub unsafe fn advance_unchecked(&mut self, n: usize) -> &mut BorrowedCursor<'a> โ
core_io_borrowed_buf
)Advances 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
)
pub fn ensure_init(&mut self) -> &mut BorrowedCursor<'a> โ
core_io_borrowed_buf
)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
)
pub unsafe fn set_init(&mut self, n: usize) -> &mut BorrowedCursor<'a> โ
core_io_borrowed_buf
)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> Freeze for BorrowedCursor<'a>
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ยง
ยงimpl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
ยงimpl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
ยงimpl<T> Instrument for T
impl<T> Instrument for T
ยงfn instrument(self, span: Span) -> Instrumented<Self> โ
fn instrument(self, span: Span) -> Instrumented<Self> โ
sourceยงimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourceยงfn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request