pub enum ProgramCacheEntryOwner {
NativeLoader,
LoaderV1,
LoaderV2,
LoaderV3,
LoaderV4,
}๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.Expand description
The owner of a programs accounts, thus the loader of a program
Variantsยง
NativeLoader
๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.LoaderV1
๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.LoaderV2
๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.LoaderV3
๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.LoaderV4
๐Deprecated since 3.1.0: This crate has been marked for formal inclusion in the Agave Unstable API. From v4.0.0 onward, the
agave-unstable-api crate feature must be specified to acknowledge use of an interface that may break without warning.Trait Implementationsยง
Sourceยงimpl Clone for ProgramCacheEntryOwner
impl Clone for ProgramCacheEntryOwner
Sourceยงfn clone(&self) -> ProgramCacheEntryOwner
fn clone(&self) -> ProgramCacheEntryOwner
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 ProgramCacheEntryOwner
impl Debug for ProgramCacheEntryOwner
Sourceยงimpl Default for ProgramCacheEntryOwner
impl Default for ProgramCacheEntryOwner
Sourceยงfn default() -> ProgramCacheEntryOwner
fn default() -> ProgramCacheEntryOwner
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl From<ProgramCacheEntryOwner> for Pubkey
impl From<ProgramCacheEntryOwner> for Pubkey
Sourceยงfn from(program_cache_entry_owner: ProgramCacheEntryOwner) -> Self
fn from(program_cache_entry_owner: ProgramCacheEntryOwner) -> Self
Converts to this type from the input type.
Sourceยงimpl PartialEq for ProgramCacheEntryOwner
impl PartialEq for ProgramCacheEntryOwner
Sourceยงimpl TryFrom<&Address> for ProgramCacheEntryOwner
impl TryFrom<&Address> for ProgramCacheEntryOwner
impl Copy for ProgramCacheEntryOwner
impl Eq for ProgramCacheEntryOwner
impl StructuralPartialEq for ProgramCacheEntryOwner
Auto Trait Implementationsยง
impl Freeze for ProgramCacheEntryOwner
impl RefUnwindSafe for ProgramCacheEntryOwner
impl Send for ProgramCacheEntryOwner
impl Sync for ProgramCacheEntryOwner
impl Unpin for ProgramCacheEntryOwner
impl UnwindSafe for ProgramCacheEntryOwner
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<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