#[repr(u16)]pub enum OwnersBlockFormat {
AddressesOnly = 0,
}
Expand description
Owner block holds a set of unique addresses of account owners, and an account meta has a owner_offset field for accessing it’s owner address.
Variants§
AddressesOnly = 0
This format persists OwnerBlock as a consecutive bytes of pubkeys without any meta-data. For each account meta, it has a owner_offset field to access its owner’s address in the OwnersBlock.
Implementations§
source§impl OwnersBlockFormat
impl OwnersBlockFormat
sourcepub fn write_owners_block(
&self,
file: &TieredStorageFile,
addresses: &[Pubkey],
) -> TieredStorageResult<usize>
pub fn write_owners_block( &self, file: &TieredStorageFile, addresses: &[Pubkey], ) -> TieredStorageResult<usize>
Persists the provided owners’ addresses into the specified file.
sourcepub fn get_owner_address<'a>(
&self,
mmap: &'a Mmap,
footer: &TieredStorageFooter,
owner_offset: OwnerOffset,
) -> TieredStorageResult<&'a Pubkey>
pub fn get_owner_address<'a>( &self, mmap: &'a Mmap, footer: &TieredStorageFooter, owner_offset: OwnerOffset, ) -> TieredStorageResult<&'a Pubkey>
Returns the owner address associated with the specified owner_offset and footer inside the input mmap.
Trait Implementations§
source§impl Clone for OwnersBlockFormat
impl Clone for OwnersBlockFormat
source§fn clone(&self) -> OwnersBlockFormat
fn clone(&self) -> OwnersBlockFormat
Returns a copy 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 OwnersBlockFormat
impl Debug for OwnersBlockFormat
source§impl Default for OwnersBlockFormat
impl Default for OwnersBlockFormat
source§fn default() -> OwnersBlockFormat
fn default() -> OwnersBlockFormat
Returns the “default value” for a type. Read more
source§impl From<OwnersBlockFormat> for u16
impl From<OwnersBlockFormat> for u16
source§fn from(enum_value: OwnersBlockFormat) -> Self
fn from(enum_value: OwnersBlockFormat) -> Self
Converts to this type from the input type.
source§impl Hash for OwnersBlockFormat
impl Hash for OwnersBlockFormat
source§impl PartialEq for OwnersBlockFormat
impl PartialEq for OwnersBlockFormat
source§impl TryFrom<u16> for OwnersBlockFormat
impl TryFrom<u16> for OwnersBlockFormat
source§type Error = TryFromPrimitiveError<OwnersBlockFormat>
type Error = TryFromPrimitiveError<OwnersBlockFormat>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for OwnersBlockFormat
impl TryFromPrimitive for OwnersBlockFormat
const NAME: &'static str = "OwnersBlockFormat"
type Primitive = u16
type Error = TryFromPrimitiveError<OwnersBlockFormat>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for OwnersBlockFormat
impl Eq for OwnersBlockFormat
impl StructuralPartialEq for OwnersBlockFormat
Auto Trait Implementations§
impl Freeze for OwnersBlockFormat
impl RefUnwindSafe for OwnersBlockFormat
impl Send for OwnersBlockFormat
impl Sync for OwnersBlockFormat
impl Unpin for OwnersBlockFormat
impl UnwindSafe for OwnersBlockFormat
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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§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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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