Struct parity_scale_codec::Ref [−][src]
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> Deref for Ref<'a, T, U>
[src]
impl<'a, T: EncodeLike<U>, U: Encode> EncodeLike<U> for Ref<'a, T, U>
[src]
impl<'a, T: EncodeLike<U>, U: Encode> EncodeLike<U> for &Ref<'a, T, U>
[src]
impl<'a, T: EncodeLike<U>, U: Encode> From<&'a T> for Ref<'a, T, U>
[src]
impl<'a, T: EncodeLike<U>, U: Encode> WrapperTypeEncode for Ref<'a, T, U>
[src]
Auto Trait Implementations
impl<'a, T, U> RefUnwindSafe for Ref<'a, T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<'a, T, U> Send for Ref<'a, T, U> where
T: Sync,
U: Send,
T: Sync,
U: Send,
impl<'a, T, U> Sync for Ref<'a, T, U> where
T: Sync,
U: Sync,
T: Sync,
U: Sync,
impl<'a, T, U> Unpin for Ref<'a, T, U> where
U: Unpin,
U: Unpin,
impl<'a, T, U> UnwindSafe for Ref<'a, T, U> where
T: RefUnwindSafe,
U: UnwindSafe,
T: RefUnwindSafe,
U: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,