#[repr(C)]pub struct PrefixPageSet<const PAGES: usize> {
pub identity: PrefixIdentity,
pub pages: [u32; PAGES],
pub page_count: u16,
pub token_count: u32,
}Fields§
§identity: PrefixIdentity§pages: [u32; PAGES]§page_count: u16§token_count: u32Implementations§
Source§impl<const PAGES: usize> PrefixPageSet<PAGES>
impl<const PAGES: usize> PrefixPageSet<PAGES>
pub const fn empty() -> Self
pub fn new( identity: PrefixIdentity, pages: &[u32], token_count: u32, ) -> Result<Self, RegistryError>
pub fn page_slice(&self) -> &[u32]
Trait Implementations§
Source§impl<const PAGES: usize> Clone for PrefixPageSet<PAGES>
impl<const PAGES: usize> Clone for PrefixPageSet<PAGES>
Source§fn clone(&self) -> PrefixPageSet<PAGES>
fn clone(&self) -> PrefixPageSet<PAGES>
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<const PAGES: usize> Debug for PrefixPageSet<PAGES>
impl<const PAGES: usize> Debug for PrefixPageSet<PAGES>
Source§impl<const PAGES: usize> PartialEq for PrefixPageSet<PAGES>
impl<const PAGES: usize> PartialEq for PrefixPageSet<PAGES>
Source§fn eq(&self, other: &PrefixPageSet<PAGES>) -> bool
fn eq(&self, other: &PrefixPageSet<PAGES>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<const PAGES: usize> Copy for PrefixPageSet<PAGES>
impl<const PAGES: usize> Eq for PrefixPageSet<PAGES>
impl<const PAGES: usize> StructuralPartialEq for PrefixPageSet<PAGES>
Auto Trait Implementations§
impl<const PAGES: usize> Freeze for PrefixPageSet<PAGES>
impl<const PAGES: usize> RefUnwindSafe for PrefixPageSet<PAGES>
impl<const PAGES: usize> Send for PrefixPageSet<PAGES>
impl<const PAGES: usize> Sync for PrefixPageSet<PAGES>
impl<const PAGES: usize> Unpin for PrefixPageSet<PAGES>
impl<const PAGES: usize> UnsafeUnpin for PrefixPageSet<PAGES>
impl<const PAGES: usize> UnwindSafe for PrefixPageSet<PAGES>
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.
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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