InCommandBuf

Struct InCommandBuf 

Source
pub struct InCommandBuf { /* private fields */ }

Implementations§

Source§

impl InCommandBuf

Source

pub fn new<__Fcontent>(data: Vec<u8>, content: __Fcontent) -> Self
where __Fcontent: for<'data> FnOnce(&'data [u8]) -> InCommand<'data>,

Create a new instance of the rental struct.

The first argument provided is the head, followed by a series of closures, one for each tail field. Each of these closures will receive, as its arguments, a borrow of the previous field, followed by borrows of the remaining prefix fields if the struct is a shared rental. If the struct is a mutable rental, only the immediately preceding field is passed.

Source

pub fn try_new<__Fcontent, __E>( data: Vec<u8>, content: __Fcontent, ) -> RentalResult<Self, __E, Vec<u8>>
where __Fcontent: for<'data> FnOnce(&'data [u8]) -> Result<InCommand<'data>, __E>,

Attempt to create a new instance of the rental struct.

As new, but each closure returns a Result. If one of them fails, execution is short-circuited and a tuple of the error and the original head value is returned to you.

Source

pub fn try_new_or_drop<__Fcontent, __E>( data: Vec<u8>, content: __Fcontent, ) -> Result<Self, __E>
where __Fcontent: for<'data> FnOnce(&'data [u8]) -> Result<InCommand<'data>, __E>,

Attempt to create a new instance of the rental struct.

As try_new, but only the error value is returned upon failure; the head value is dropped. This method interacts more smoothly with existing error conversions.

Source

pub unsafe fn all_erased(&self) -> <Self as Rental2<'_, '_>>::Borrow

Return lifetime-erased shared borrows of the fields of the struct.

This is unsafe because the erased lifetimes are fake. Use this only if absolutely necessary and be very mindful of what the true lifetimes are.

Source

pub unsafe fn all_mut_erased(&mut self) -> <Self as Rental2<'_, '_>>::BorrowMut

Return a lifetime-erased mutable borrow of the suffix of the struct.

This is unsafe because the erased lifetimes are fake. Use this only if absolutely necessary and be very mindful of what the true lifetimes are.

Source

pub fn rent<__F, __R>(&self, f: __F) -> __R
where __F: for<'content, 'data> FnOnce(&'content InCommand<'data>) -> __R, __R:,

Execute a closure on the shared suffix of the struct.

The closure may return any value not bounded by one of the special rental lifetimes of the struct.

Source

pub fn rent_mut<__F, __R>(&mut self, f: __F) -> __R
where __F: for<'content, 'data> FnOnce(&'content mut InCommand<'data>) -> __R, __R:,

Execute a closure on the mutable suffix of the struct.

The closure may return any value not bounded by one of the special rental lifetimes of the struct.

Source

pub fn ref_rent<__F, __R>(&self, f: __F) -> &__R
where __F: for<'content, 'data> FnOnce(&'content InCommand<'data>) -> &'content __R, __R: ?Sized,

Return a shared reference from the shared suffix of the struct.

This is a subtle variation of rent where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn maybe_ref_rent<__F, __R>(&self, f: __F) -> Option<&__R>
where __F: for<'content, 'data> FnOnce(&'content InCommand<'data>) -> Option<&'content __R>, __R: ?Sized,

Optionally return a shared reference from the shared suffix of the struct.

This is a subtle variation of rent where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn try_ref_rent<__F, __R, __E>(&self, f: __F) -> Result<&__R, __E>
where __F: for<'content, 'data> FnOnce(&'content InCommand<'data>) -> Result<&'content __R, __E>, __R: ?Sized,

Try to return a shared reference from the shared suffix of the struct, or an error on failure.

This is a subtle variation of rent where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn ref_rent_mut<__F, __R>(&mut self, f: __F) -> &mut __R
where __F: for<'content, 'data> FnOnce(&'content mut InCommand<'data>) -> &'content mut __R, __R: ?Sized,

Return a mutable reference from the mutable suffix of the struct.

This is a subtle variation of rent_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn maybe_ref_rent_mut<__F, __R>(&mut self, f: __F) -> Option<&mut __R>
where __F: for<'content, 'data> FnOnce(&'content mut InCommand<'data>) -> Option<&'content mut __R>, __R: ?Sized,

Optionally return a mutable reference from the mutable suffix of the struct.

This is a subtle variation of rent_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn try_ref_rent_mut<__F, __R, __E>( &mut self, f: __F, ) -> Result<&mut __R, __E>
where __F: for<'content, 'data> FnOnce(&'content mut InCommand<'data>) -> Result<&'content mut __R, __E>, __R: ?Sized,

Try to return a mutable reference from the mutable suffix of the struct, or an error on failure.

This is a subtle variation of rent_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn into_head(self) -> Vec<u8>

Drop the rental struct and return the original head value to you.

Source§

impl InCommandBuf

Source

pub fn head(&self) -> &<Vec<u8> as Deref>::Target

Return a shared reference to the head field of the struct.

Source

pub fn rent_all<__F, __R>(&self, f: __F) -> __R
where __F: for<'data, 'content> FnOnce(InCommandBuf_Borrow<'data, 'content>) -> __R, __R:,

Execute a closure on shared borrows of the fields of the struct.

The closure may return any value not bounded by one of the special rental lifetimes of the struct.

Source

pub fn ref_rent_all<__F, __R>(&self, f: __F) -> &__R
where __F: for<'data, 'content> FnOnce(InCommandBuf_Borrow<'data, 'content>) -> &'content __R, __R: ?Sized,

Return a shared reference from shared borrows of the fields of the struct.

This is a subtle variation of rent_all where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn maybe_ref_rent_all<__F, __R>(&self, f: __F) -> Option<&__R>
where __F: for<'data, 'content> FnOnce(InCommandBuf_Borrow<'data, 'content>) -> Option<&'content __R>, __R: ?Sized,

Optionally return a shared reference from shared borrows of the fields of the struct.

This is a subtle variation of rent_all where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn try_ref_rent_all<__F, __R, __E>(&self, f: __F) -> Result<&__R, __E>
where __F: for<'data, 'content> FnOnce(InCommandBuf_Borrow<'data, 'content>) -> Result<&'content __R, __E>, __R: ?Sized,

Try to return a shared reference from shared borrows of the fields of the struct, or an error on failure.

This is a subtle variation of rent_all where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn rent_all_mut<__F, __R>(&mut self, f: __F) -> __R
where __F: for<'data, 'content> FnOnce(InCommandBuf_BorrowMut<'data, 'content>) -> __R, __R:,

Execute a closure on shared borrows of the prefix fields and a mutable borrow of the suffix field of the struct.

The closure may return any value not bounded by one of the special rental lifetimes of the struct.

Source

pub fn ref_rent_all_mut<__F, __R>(&mut self, f: __F) -> &mut __R
where __F: for<'data, 'content> FnOnce(InCommandBuf_BorrowMut<'data, 'content>) -> &'content mut __R, __R: ?Sized,

Return a mutable reference from shared borrows of the prefix fields and a mutable borrow of the suffix field of the struct.

This is a subtle variation of rent_all_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn maybe_ref_rent_all_mut<__F, __R>(&mut self, f: __F) -> Option<&mut __R>
where __F: for<'data, 'content> FnOnce(InCommandBuf_BorrowMut<'data, 'content>) -> Option<&'content mut __R>, __R: ?Sized,

Optionally return a mutable reference from shared borrows of the prefix fields and a mutable borrow of the suffix field of the struct.

This is a subtle variation of rent_all_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source

pub fn try_ref_rent_all_mut<__F, __R, __E>( &mut self, f: __F, ) -> Result<&mut __R, __E>
where __F: for<'data, 'content> FnOnce(InCommandBuf_BorrowMut<'data, 'content>) -> Result<&'content mut __R, __E>, __R: ?Sized,

Try to return a mutable reference from shared borrows of the prefix fields and a mutable borrow of the suffix field of the struct, or an error on failure.

This is a subtle variation of rent_all_mut where it is legal to return a reference bounded by a rental lifetime, because that lifetime is reborrowed away before it is returned to you.

Source§

impl InCommandBuf

Source

pub fn all<'__s>(&'__s self) -> <Self as Rental2<'_, '_>>::Borrow

Borrow all fields of the struct by reborrowing away the rental lifetimes.

This is safe because the lifetimes are verified to be covariant first.

Source

pub fn suffix( &self, ) -> <<Self as Rental2<'_, '_>>::Borrow as IntoSuffix>::Suffix

Borrow the suffix field of the struct by reborrowing away the rental lifetimes.

This is safe because the lifetimes are verified to be covariant first.

Trait Implementations§

Source§

impl Debug for InCommandBuf
where Vec<u8>: Debug, InCommand<'static>: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.