Struct parity_scale_codec::CompactRef

source ·
pub struct CompactRef<'a, T>(pub &'a T);
Expand description

Compact-encoded variant of &’a T. This is more space-efficient but less compute-efficient.

Tuple Fields§

§0: &'a T

Trait Implementations§

source§

impl<'a, T: Clone> Clone for CompactRef<'a, T>

source§

fn clone(&self) -> CompactRef<'a, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Encode for CompactRef<'a, ()>

source§

fn encode_to<W: Output + ?Sized>(&self, _dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a, T> Encode for CompactRef<'a, T>
where T: CompactAs, for<'b> CompactRef<'b, T::As>: Encode,

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<Out: Output + ?Sized>(&self, dest: &mut Out)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> Encode for CompactRef<'a, u128>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<W: Output + ?Sized>(&self, dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> Encode for CompactRef<'a, u16>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<W: Output + ?Sized>(&self, dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> Encode for CompactRef<'a, u32>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<W: Output + ?Sized>(&self, dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> Encode for CompactRef<'a, u64>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<W: Output + ?Sized>(&self, dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> Encode for CompactRef<'a, u8>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<W: Output + ?Sized>(&self, dest: &mut W)

Convert self to a slice and append it to the destination.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a, T> From<&'a T> for CompactRef<'a, T>

source§

fn from(x: &'a T) -> Self

Converts to this type from the input type.
source§

impl<'a, T: PartialEq> PartialEq for CompactRef<'a, T>

source§

fn eq(&self, other: &CompactRef<'a, T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, T: Copy> Copy for CompactRef<'a, T>

source§

impl<'a, T> EncodeLike for CompactRef<'a, T>
where T: CompactAs, for<'b> CompactRef<'b, T::As>: Encode,

source§

impl<'a, T: Eq> Eq for CompactRef<'a, T>

source§

impl<'a, T> StructuralPartialEq for CompactRef<'a, T>

Auto Trait Implementations§

§

impl<'a, T> Freeze for CompactRef<'a, T>

§

impl<'a, T> RefUnwindSafe for CompactRef<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for CompactRef<'a, T>
where T: Sync,

§

impl<'a, T> Sync for CompactRef<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for CompactRef<'a, T>

§

impl<'a, T> UnwindSafe for CompactRef<'a, T>
where T: RefUnwindSafe,

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
source§

impl<T> EncodeLike<&&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&mut T> for T
where T: Encode,

source§

impl<T> EncodeLike<Arc<T>> for T
where T: Encode,

source§

impl<T> EncodeLike<Box<T>> for T
where T: Encode,

source§

impl<'a, T> EncodeLike<Cow<'a, T>> for T
where T: ToOwned + Encode,

source§

impl<T> EncodeLike<Rc<T>> for T
where T: Encode,

source§

impl<S> FullEncode for S
where S: Encode + EncodeLike,