Struct parity_scale_codec::Ref
source · [−]pub struct Ref<'a, T: EncodeLike<U>, U: Encode>(_, _);
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
sourceimpl<'a, T: EncodeLike<U>, U: Encode> Deref for Ref<'a, T, U>
impl<'a, T: EncodeLike<U>, U: Encode> Deref 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> 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> RefUnwindSafe for Ref<'a, T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<'a, T, U> Send for Ref<'a, T, U> where
T: Sync,
U: Send,
impl<'a, T, U> Sync for Ref<'a, T, U> where
T: Sync,
U: Sync,
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more