pub struct Ref<'a, T: EncodeLike<U>, U: Encode>(/* private fields */);
Expand description
Reference wrapper that implement encode like any type that is encoded like its inner type.
§Example
fn foo<T: EncodeLike<u8>>(t: T) -> T {
store_t(Ref::from(&t)); // Store t without moving it, but only using a reference.
t
}
fn store_t<T: EncodeLike<u8>>(t: T) {
}
Trait Implementations§
impl<'a, T: EncodeLike<U>, U: Encode> EncodeLike<U> for &Ref<'a, T, U>
impl<'a, T: EncodeLike<U>, U: Encode> EncodeLike<U> for Ref<'a, T, U>
impl<'a, T: EncodeLike<U>, U: Encode> WrapperTypeEncode for Ref<'a, T, U>
Auto Trait Implementations§
impl<'a, T, U> Freeze for Ref<'a, T, U>
impl<'a, T, U> RefUnwindSafe for Ref<'a, T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<'a, T, U> Send for Ref<'a, T, U>
impl<'a, T, U> Sync for Ref<'a, T, U>
impl<'a, T, U> Unpin for Ref<'a, T, U>where
U: Unpin,
impl<'a, T, U> UnwindSafe for Ref<'a, T, U>where
T: RefUnwindSafe,
U: UnwindSafe,
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
Source§impl<T, X> Encode for X
impl<T, X> Encode for X
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encode_to<W>(&self, dest: &mut W)
fn encode_to<W>(&self, dest: &mut W)
Convert self to a slice and append it to the destination.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more