#[repr(C, align(16))]pub struct RawUnsortedQuin {
pub hash_subject: u64,
pub hash_predicate: u64,
pub hash_object: u64,
pub hash_context: u64,
pub hash_metadata: u64,
pub padding: [u8; 8],
}Fields§
§hash_subject: u64§hash_predicate: u64§hash_object: u64§hash_context: u64§hash_metadata: u64§padding: [u8; 8]Trait Implementations§
Source§impl Clone for RawUnsortedQuin
impl Clone for RawUnsortedQuin
Source§fn clone(&self) -> RawUnsortedQuin
fn clone(&self) -> RawUnsortedQuin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RawUnsortedQuin
impl Debug for RawUnsortedQuin
Source§impl Default for RawUnsortedQuin
impl Default for RawUnsortedQuin
Source§fn default() -> RawUnsortedQuin
fn default() -> RawUnsortedQuin
Returns the “default value” for a type. Read more
impl Copy for RawUnsortedQuin
impl Pod for RawUnsortedQuin
Auto Trait Implementations§
impl Freeze for RawUnsortedQuin
impl RefUnwindSafe for RawUnsortedQuin
impl Send for RawUnsortedQuin
impl Sync for RawUnsortedQuin
impl Unpin for RawUnsortedQuin
impl UnsafeUnpin for RawUnsortedQuin
impl UnwindSafe for RawUnsortedQuin
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.