pub struct OptionKeyV1<T>(pub Option<T>);
👎Deprecated: this type should not be used in new code and should only be used in transitionary code.
Expand description

A type that preserves the original implementation of Key for Option<T>. This should not be used in new code and will be removed in a future version.

Tuple Fields§

§0: Option<T>
👎Deprecated: this type should not be used in new code and should only be used in transitionary code.

Trait Implementations§

source§

impl<T: Clone> Clone for OptionKeyV1<T>

source§

fn clone(&self) -> OptionKeyV1<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<T: Debug> Debug for OptionKeyV1<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'k, T> Key<'k> for OptionKeyV1<T>
where T: Key<'k>, Self: KeyEncoding<Self, Error = <T as KeyEncoding<T>>::Error>,

source§

const CAN_OWN_BYTES: bool = false

If true, this type can benefit from an owned Vec<u8>. This flag is used as a hint of whether to attempt to do memcpy operations in some decoding operations to avoid extra allocations.
source§

fn from_ord_bytes<'b>(bytes: ByteSource<'k, 'b>) -> Result<Self, Self::Error>

Deserialize a sequence of bytes previously encoded with KeyEncoding::as_ord_bytes.
source§

fn first_value() -> Result<Self, NextValueError>

Return the first value in sequence for this type. Not all types implement this.
source§

fn next_value(&self) -> Result<Self, NextValueError>

Return the next value in sequence for this type. Not all types implement this. Instead of wrapping/overflowing, None should be returned.
source§

impl<K, T> KeyEncoding<OptionKeyV1<K>> for OptionKeyV1<T>
where T: KeyEncoding<K>, K: for<'k> Key<'k>,

source§

fn as_ord_bytes(&self) -> Result<Cow<'_, [u8]>, Self::Error>

Panics

Panics if T::into_big_endian_bytes returns an empty IVec

§

type Error = <T as KeyEncoding<K>>::Error

The error type that can be produced by either serialization or deserialization.
source§

const LENGTH: Option<usize> = T::LENGTH

The size of the key, if constant. If this type doesn’t produce the same number of bytes for each value, this should be None.
source§

fn describe<Visitor>(visitor: &mut Visitor)
where Visitor: KeyVisitor,

Describes this type by invoking functions on visitor describing the key being encoded. Read more
source§

impl<T: PartialEq> PartialEq for OptionKeyV1<T>

source§

fn eq(&self, other: &OptionKeyV1<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<T: Copy> Copy for OptionKeyV1<T>

source§

impl<T: Eq> Eq for OptionKeyV1<T>

source§

impl<T> StructuralEq for OptionKeyV1<T>

source§

impl<T> StructuralPartialEq for OptionKeyV1<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for OptionKeyV1<T>
where T: RefUnwindSafe,

§

impl<T> Send for OptionKeyV1<T>
where T: Send,

§

impl<T> Sync for OptionKeyV1<T>
where T: Sync,

§

impl<T> Unpin for OptionKeyV1<T>
where T: Unpin,

§

impl<T> UnwindSafe for OptionKeyV1<T>
where T: 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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

§

type Output = T

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more