Tup2

Struct Tup2 

Source
pub struct Tup2<T1, T2>(pub T1, pub T2);
Expand description

A tuple type on which dbsp controls trait implementations.

Tuple Fields§

§0: T1§1: T2

Implementations§

Source§

impl<T1, T2> Tup2<T1, T2>

Source

pub fn new(T1: T1, T2: T2) -> Self

Trait Implementations§

Source§

impl<T1, T2> AddAssignByRef for Tup2<T1, T2>

Source§

fn add_assign_by_ref(&mut self, other: &Self)

Source§

impl<T1, T2> AddByRef for Tup2<T1, T2>
where T1: AddByRef, T2: AddByRef,

Source§

fn add_by_ref(&self, other: &Self) -> Self

Source§

impl<T1, T2> Archive for Tup2<T1, T2>
where T1: Archive + Archive, T2: Archive + Archive, <T1 as Archive>::Archived: Ord, <T2 as Archive>::Archived: Ord,

Source§

type Archived = ArchivedTup2<T1, T2>

The archived representation of this type. Read more
Source§

type Resolver = Tup2Resolver<T1, T2>

The resolver for this type. It must contain all the additional information from serializing needed to make the archived type from the normal type.
Source§

unsafe fn resolve( &self, pos: usize, resolver: Self::Resolver, out: *mut Self::Archived, )

Creates the archived version of this value at the given position and writes it to the given output. Read more
Source§

impl<T1, T2> Checkpoint for Tup2<T1, T2>

Source§

fn checkpoint(&self) -> Result<Vec<u8>, Error>

Source§

fn restore(&mut self, data: &[u8]) -> Result<(), Error>

Source§

impl<T1: Clone, T2: Clone> Clone for Tup2<T1, T2>

Source§

fn clone(&self) -> Tup2<T1, T2>

Returns a duplicate 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<T1: Debug, T2: Debug> Debug for Tup2<T1, T2>

Source§

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

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

impl<T1: Default, T2: Default> Default for Tup2<T1, T2>

Source§

fn default() -> Tup2<T1, T2>

Returns the “default value” for a type. Read more
Source§

impl<'de, T1, T2> Deserialize<'de> for Tup2<T1, T2>
where T1: Deserialize<'de>, T2: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<__D: Fallible + ?Sized, T1, T2> Deserialize<Tup2<T1, T2>, __D> for Archived<Tup2<T1, T2>>
where T1: Archive + Archive, T2: Archive + Archive, <T1 as Archive>::Archived: Ord, <T2 as Archive>::Archived: Ord, Archived<T1>: Deserialize<T1, __D>, Archived<T2>: Deserialize<T2, __D>,

Source§

fn deserialize( &self, deserializer: &mut __D, ) -> Result<Tup2<T1, T2>, __D::Error>

Deserializes using the given deserializer
Source§

impl<'de, C, AUX, T1, T2> DeserializeWithContext<'de, C, AUX> for Tup2<T1, T2>
where Tup2<T1, T2>: Deserialize<'de>,

Source§

fn deserialize_with_context<D>( deserializer: D, _context: &'de C, ) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Source§

fn deserialize_with_context_aux<D>( deserializer: D, context: &'de C, _aux: &'de Option<AUX>, ) -> Result<Self, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Source§

impl<T1, T2> From<(T1, T2)> for Tup2<T1, T2>

Source§

fn from((T1, T2): (T1, T2)) -> Self

Converts to this type from the input type.
Source§

impl<T1, T2> HasZero for Tup2<T1, T2>
where T1: HasZero, T2: HasZero,

Source§

fn zero() -> Self

Source§

fn is_zero(&self) -> bool

Source§

impl<T1: Hash, T2: Hash> Hash for Tup2<T1, T2>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T1, T2> Into<(T1, T2)> for Tup2<T1, T2>

Source§

fn into(self) -> (T1, T2)

Converts this type into the (usually inferred) input type.
Source§

impl<T1, T2, W> MulByRef<W> for Tup2<T1, T2>
where T1: MulByRef<W, Output = T1>, T2: MulByRef<W, Output = T2>, W: ZRingValue,

Source§

type Output = Tup2<T1, T2>

Source§

fn mul_by_ref(&self, other: &W) -> Self::Output

Source§

impl<T1: Neg<Output = T1>, T2: Neg<Output = T2>> Neg for Tup2<T1, T2>

Source§

type Output = Tup2<T1, T2>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Tup2<T1, T2>

Performs the unary - operation. Read more
Source§

impl<T1, T2> NegByRef for Tup2<T1, T2>
where T1: NegByRef, T2: NegByRef,

Source§

fn neg_by_ref(&self) -> Self

Source§

impl<T1, T2> NumEntries for Tup2<T1, T2>
where T1: NumEntries, T2: NumEntries,

Source§

const CONST_NUM_ENTRIES: Option<usize> = None

Returns Some(n) if Self has constant size or None otherwise.
Source§

fn num_entries_shallow(&self) -> usize

Returns the number of entries in self.
Source§

fn num_entries_deep(&self) -> usize

Recursively computes the number of entries in a container by calling this method on each entry in self. Read more
Source§

impl<T1: Ord, T2: Ord> Ord for Tup2<T1, T2>

Source§

fn cmp(&self, other: &Tup2<T1, T2>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T1, T2, Trait1, Trait2> Pair<Trait1, Trait2> for Tup2<T1, T2>
where T1: DBData + Erase<Trait1>, T2: DBData + Erase<Trait2>, Trait1: DataTrait + ?Sized, Trait2: DataTrait + ?Sized,

Source§

fn fst(&self) -> &Trait1

Return a reference to the first component of the tuple.
Source§

fn fst_mut(&mut self) -> &mut Trait1

Return a mutable reference to the first component of the tuple.
Source§

fn snd(&self) -> &Trait2

Return a reference to the second component of the tuple.
Source§

fn snd_mut(&mut self) -> &mut Trait2

Return a mutable reference to the second component of the tuple.
Source§

fn split(&self) -> (&Trait1, &Trait2)

Return a pair of references to the values stored in the tuple.
Source§

fn split_mut(&mut self) -> (&mut Trait1, &mut Trait2)

Return a pair of mutable references to the values stored in the tuple.
Source§

fn from_refs(&mut self, fst: &Trait1, snd: &Trait2)

Clone the values of fst anf snd to the first and second components of the tuple.
Source§

fn from_vals(&mut self, fst: &mut Trait1, snd: &mut Trait2)

Move fst and snd into the first and second components of the tuple without cloning. Sets the contents of fst and snd to default values.
Source§

impl<T1: PartialEq, T2: PartialEq> PartialEq for Tup2<T1, T2>

Source§

fn eq(&self, other: &Tup2<T1, T2>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T1: PartialOrd, T2: PartialOrd> PartialOrd for Tup2<T1, T2>

Source§

fn partial_cmp(&self, other: &Tup2<T1, T2>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<__S: Fallible + ?Sized, T1, T2> Serialize<__S> for Tup2<T1, T2>
where T1: Archive + Serialize<__S>, T2: Archive + Serialize<__S>, <T1 as Archive>::Archived: Ord, <T2 as Archive>::Archived: Ord,

Source§

fn serialize(&self, serializer: &mut __S) -> Result<Self::Resolver, __S::Error>

Writes the dependencies for the object and returns a resolver that can create the archived type.
Source§

impl<T1, T2> Serialize for Tup2<T1, T2>
where T1: Serialize, T2: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T1, T2> SizeOf for Tup2<T1, T2>
where T1: SizeOf, T2: SizeOf,

Source§

fn size_of_children(&self, context: &mut Context)

Gets the size of all “children” owned by this value, not including the size of the value itself. Read more
Source§

fn size_of(&self) -> TotalSize

Gets the total size of the current value
Source§

fn size_of_with_context(&self, context: &mut Context)

Adds the size of the current value to the given Context, including both the size of the value itself and all of its children
Source§

impl<T1: Copy, T2: Copy> Copy for Tup2<T1, T2>

Source§

impl<T1: Eq, T2: Eq> Eq for Tup2<T1, T2>

Source§

impl<T1, T2> StructuralPartialEq for Tup2<T1, T2>

Auto Trait Implementations§

§

impl<T1, T2> Freeze for Tup2<T1, T2>
where T1: Freeze, T2: Freeze,

§

impl<T1, T2> RefUnwindSafe for Tup2<T1, T2>

§

impl<T1, T2> Send for Tup2<T1, T2>
where T1: Send, T2: Send,

§

impl<T1, T2> Sync for Tup2<T1, T2>
where T1: Sync, T2: Sync,

§

impl<T1, T2> Unpin for Tup2<T1, T2>
where T1: Unpin, T2: Unpin,

§

impl<T1, T2> UnwindSafe for Tup2<T1, T2>
where T1: UnwindSafe, T2: 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> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Source§

impl<T> ArchiveUnsized for T
where T: Archive,

Source§

type Archived = <T as Archive>::Archived

The archived counterpart of this type. Unlike Archive, it may be unsized. Read more
Source§

type MetadataResolver = ()

The resolver for the metadata of this type. Read more
Source§

unsafe fn resolve_metadata( &self, _: usize, _: <T as ArchiveUnsized>::MetadataResolver, _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata, )

Creates the archived version of the metadata for this value at the given position and writes it to the given output. Read more
Source§

unsafe fn resolve_unsized( &self, from: usize, to: usize, resolver: Self::MetadataResolver, out: *mut RelPtr<Self::Archived, <isize as Archive>::Archived>, )

Resolves a relative pointer to this value with the given from and to and writes it to the given output. Read more
Source§

impl<T> AsAny for T
where T: 'static,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

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> CallHasher for T
where T: Hash + ?Sized,

Source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

Source§

impl<T> Clonable for T
where T: Clone + Default,

Source§

unsafe fn raw_clone_to(&self, dst: *mut u8)

Clone self into dst. Read more
Source§

unsafe fn raw_move_to(&mut self, dst: *mut u8)

Move the contents of self into dst, replacing the contents of self with Self::default(). Read more
Source§

unsafe fn raw_clone_from(&mut self, src: *const u8)

Clone src into self. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<T> Comparable for T
where T: Ord + Eq + 'static,

Source§

unsafe fn compare(&self, other: *const u8) -> Ordering

Compare self with other. Read more
Source§

unsafe fn equal(&self, other: *const u8) -> bool

Test if self and other are equal. Read more
Source§

unsafe fn less_than(&self, other: *const u8) -> bool

Returns true iff self < other. Read more
Source§

impl<T> Data for T
where T: DBData,

Source§

fn default_hash(&self) -> u64

Compute a hash of the object using default hasher and seed.
Source§

fn dyn_hash(&self, hasher: &mut dyn Hasher)

Source§

fn as_data(&self) -> &(dyn Data + 'static)

Cast any type that implements this trait to &dyn Data. Read more
Source§

fn as_data_mut(&mut self) -> &mut (dyn Data + 'static)

Cast any type that implements this trait to &mut dyn Data. Read more
Source§

impl<T> DeserializableDyn for T
where T: ArchivedDBData,

Source§

unsafe fn deserialize_from_bytes(&mut self, bytes: &[u8], pos: usize)

Deserialize self from the given slice and offset. Read more
Source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

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
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<V> Erase<dyn Data> for V

Source§

fn erase(&self) -> &(dyn Data + 'static)

Convert a reference to self into a reference to Trait.
Source§

fn erase_mut(&mut self) -> &mut (dyn Data + 'static)

Convert a mutable reference to self into a mutable reference to Trait.
Source§

fn erase_box(self: Box<V>) -> Box<dyn Data>

Convert Box<Self> into Box<Trait>.
Source§

fn erase_archived( archived: &<V as Archive>::Archived, ) -> &<dyn Data as ArchiveTrait>::Archived

Convert a reference to an archived representation of Self into a reference to a trait object of type Trait::Archived.
Source§

impl<V, T1, T2> Erase<dyn Pair<T1, T2>> for V
where V: Pair<T1, T2> + ArchivedDBData, DeserializeImpl<V, dyn Pair<T1, T2>>: ArchivedPairTrait<T1, T2>, T1: DataTrait + ?Sized, T2: DataTrait + ?Sized,

Source§

fn erase(&self) -> &(dyn Pair<T1, T2> + 'static)

Convert a reference to self into a reference to Trait.
Source§

fn erase_mut(&mut self) -> &mut (dyn Pair<T1, T2> + 'static)

Convert a mutable reference to self into a mutable reference to Trait.
Source§

fn erase_box(self: Box<V>) -> Box<dyn Pair<T1, T2>>

Convert Box<Self> into Box<Trait>.
Source§

fn erase_archived( archived: &<V as Archive>::Archived, ) -> &<dyn Pair<T1, T2> as ArchiveTrait>::Archived

Convert a reference to an archived representation of Self into a reference to a trait object of type Trait::Archived.
Source§

impl<V> Erase<dyn Weight> for V

Source§

fn erase(&self) -> &(dyn Weight + 'static)

Convert a reference to self into a reference to Trait.
Source§

fn erase_mut(&mut self) -> &mut (dyn Weight + 'static)

Convert a mutable reference to self into a mutable reference to Trait.
Source§

fn erase_box(self: Box<V>) -> Box<dyn Weight>

Convert Box<Self> into Box<Trait>.
Source§

fn erase_archived( archived: &<V as Archive>::Archived, ) -> &<dyn Weight as ArchiveTrait>::Archived

Convert a reference to an archived representation of Self into a reference to a trait object of type Trait::Archived.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

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

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

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

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

Source§

impl<T> SerializeDyn for T
where T: ArchivedDBData,

Source§

impl<T, S> SerializeUnsized<S> for T
where T: Serialize<S>, S: Serializer + ?Sized,

Source§

fn serialize_unsized( &self, serializer: &mut S, ) -> Result<usize, <S as Fallible>::Error>

Writes the object and returns the position of the archived type.
Source§

fn serialize_metadata(&self, _: &mut S) -> Result<(), <S as Fallible>::Error>

Serializes the metadata for the given type.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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

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

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

Source§

fn vzip(self) -> V

Source§

impl<T> Weight for T
where T: DBWeight,

Source§

fn set_zero(&mut self)

Set the weight to zero.
Source§

fn is_zero(&self) -> bool

Check if the weight is zero.
Source§

unsafe fn raw_add(&self, rhs: *const u8, result: *mut u8)

Add the value of rhs to self, store the result in result. Read more
Source§

unsafe fn raw_add_assign(&mut self, rhs: *const u8)

Add the value of rhs to self, store the result in self. Read more
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> DBData for T
where T: Default + Clone + Eq + Ord + Hash + SizeOf + Send + Sync + Debug + ArchivedDBData + 'static,

Source§

impl<T> DBWeight for T
where T: DBData + MonoidValue,

Source§

impl<T> Data for T
where T: Clone + 'static,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> GroupValue for T
where T: MonoidValue + Neg<Output = T> + NegByRef,

Source§

impl<T> MonoidValue for T

Source§

impl<N> NodeTrait for N
where N: Copy + Ord + Hash,

Source§

impl<T> Rkyv for T

Source§

impl<T> SemigroupValue for T
where T: Clone + Eq + SizeOf + AddByRef + AddAssignByRef + 'static,