CompositeKeyDecoder

Struct CompositeKeyDecoder 

Source
pub struct CompositeKeyDecoder<'key, 'ephemeral, NullHandling = EscapeNullBytes> { /* private fields */ }
Expand description

Decodes multiple Key values from a byte slice previously encoded with CompositeKeyEncoder.

Implementations§

Source§

impl<'key, 'ephemeral> CompositeKeyDecoder<'key, 'ephemeral, EscapeNullBytes>

Source

pub fn default_for(bytes: ByteSource<'key, 'ephemeral>) -> Self

Returns a decoder for bytes that decodes escaped null bytes.

This function is compatible with keys encoded with CompositeKeyEncoder::default().

Source§

impl<'key, 'ephemeral> CompositeKeyDecoder<'key, 'ephemeral, AllowNullBytes>

Source

pub fn allowing_null_bytes(bytes: ByteSource<'key, 'ephemeral>) -> Self

Returns a decoder for bytes that ignores null bytes.

This function is compatible with keys encoded with CompositeKeyEncoder::allowing_null_bytes().

Source§

impl<'key, 'ephemeral> CompositeKeyDecoder<'key, 'ephemeral, DenyNullBytes>

Source

pub fn denying_null_bytes(bytes: ByteSource<'key, 'ephemeral>) -> Self

Returns a decoder for bytes that ignores null bytes.

This function is compatible with keys encoded with CompositeKeyEncoder::denying_null_bytes().

Source§

impl<'key, 'ephemeral, NullHandling> CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: CompositeKeyNullHandler,

Source

pub fn decode<T: Key<'key>>(&mut self) -> Result<T, CompositeKeyError>

Decodes a value previously encoded using CompositeKeyEncoder. Calls to decode must be made in the same order as the values were encoded in.


let value1 = String::from("hello");
let value2 = 42_u32;
let mut encoder = CompositeKeyEncoder::default();
encoder.encode(&value1).unwrap();
encoder.encode(&value2).unwrap();
let encoded = encoder.finish();

let mut decoder = CompositeKeyDecoder::default_for(ByteSource::Borrowed(&encoded));
let decoded_string = decoder.decode::<String>().unwrap();
assert_eq!(decoded_string, value1);
let decoded_u32 = decoder.decode::<u32>().unwrap();
assert_eq!(decoded_u32, value2);
decoder.finish().expect("trailing bytes");
Source

pub fn finish(self) -> Result<(), CompositeKeyError>

Verifies the underlying byte slice has been fully consumed.

Auto Trait Implementations§

§

impl<'key, 'ephemeral, NullHandling> Freeze for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: Freeze,

§

impl<'key, 'ephemeral, NullHandling> RefUnwindSafe for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: RefUnwindSafe,

§

impl<'key, 'ephemeral, NullHandling> Send for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: Send,

§

impl<'key, 'ephemeral, NullHandling> Sync for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: Sync,

§

impl<'key, 'ephemeral, NullHandling> Unpin for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: Unpin,

§

impl<'key, 'ephemeral, NullHandling> UnwindSafe for CompositeKeyDecoder<'key, 'ephemeral, NullHandling>
where NullHandling: UnwindSafe,

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.