pub struct TypeIndexWithOutputindex { /* private fields */ }
Trait Implementations§
Source§impl Clone for TypeIndexWithOutputindex
impl Clone for TypeIndexWithOutputindex
Source§fn clone(&self) -> TypeIndexWithOutputindex
fn clone(&self) -> TypeIndexWithOutputindex
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TypeIndexWithOutputindex
impl Debug for TypeIndexWithOutputindex
Source§impl Default for TypeIndexWithOutputindex
impl Default for TypeIndexWithOutputindex
Source§fn default() -> TypeIndexWithOutputindex
fn default() -> TypeIndexWithOutputindex
Returns the “default value” for a type. Read more
Source§impl From<&TypeIndexWithOutputindex> for ByteView
impl From<&TypeIndexWithOutputindex> for ByteView
Source§fn from(value: &TypeIndexWithOutputindex) -> Self
fn from(value: &TypeIndexWithOutputindex) -> Self
Converts to this type from the input type.
Source§impl From<(TypeIndex, OutputIndex)> for TypeIndexWithOutputindex
impl From<(TypeIndex, OutputIndex)> for TypeIndexWithOutputindex
Source§fn from(value: (TypeIndex, OutputIndex)) -> Self
fn from(value: (TypeIndex, OutputIndex)) -> Self
Converts to this type from the input type.
Source§impl From<ByteView> for TypeIndexWithOutputindex
impl From<ByteView> for TypeIndexWithOutputindex
Source§impl From<TypeIndexWithOutputindex> for ByteView
impl From<TypeIndexWithOutputindex> for ByteView
Source§fn from(value: TypeIndexWithOutputindex) -> Self
fn from(value: TypeIndexWithOutputindex) -> Self
Converts to this type from the input type.
Source§impl Ord for TypeIndexWithOutputindex
impl Ord for TypeIndexWithOutputindex
Source§fn cmp(&self, other: &TypeIndexWithOutputindex) -> Ordering
fn cmp(&self, other: &TypeIndexWithOutputindex) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TypeIndexWithOutputindex
impl PartialEq for TypeIndexWithOutputindex
Source§impl PartialOrd for TypeIndexWithOutputindex
impl PartialOrd for TypeIndexWithOutputindex
Source§impl Serialize for TypeIndexWithOutputindex
impl Serialize for TypeIndexWithOutputindex
impl Copy for TypeIndexWithOutputindex
impl Eq for TypeIndexWithOutputindex
impl StructuralPartialEq for TypeIndexWithOutputindex
Auto Trait Implementations§
impl Freeze for TypeIndexWithOutputindex
impl RefUnwindSafe for TypeIndexWithOutputindex
impl Send for TypeIndexWithOutputindex
impl Sync for TypeIndexWithOutputindex
impl Unpin for TypeIndexWithOutputindex
impl UnwindSafe for TypeIndexWithOutputindex
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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