pub struct PluginsList {Show 17 fields
pub royalties: Option<RoyaltiesPlugin>,
pub freeze_delegate: Option<FreezeDelegatePlugin>,
pub burn_delegate: Option<BurnDelegatePlugin>,
pub transfer_delegate: Option<TransferDelegatePlugin>,
pub update_delegate: Option<UpdateDelegatePlugin>,
pub permanent_freeze_delegate: Option<PermanentFreezeDelegatePlugin>,
pub attributes: Option<AttributesPlugin>,
pub permanent_transfer_delegate: Option<PermanentTransferDelegatePlugin>,
pub permanent_burn_delegate: Option<PermanentBurnDelegatePlugin>,
pub edition: Option<EditionPlugin>,
pub master_edition: Option<MasterEditionPlugin>,
pub add_blocker: Option<AddBlockerPlugin>,
pub immutable_metadata: Option<ImmutableMetadataPlugin>,
pub verified_creators: Option<VerifiedCreatorsPlugin>,
pub autograph: Option<AutographPlugin>,
pub bubblegum_v2: Option<BubblegumV2Plugin>,
pub freeze_execute: Option<FreezeExecutePlugin>,
}
Fields§
§royalties: Option<RoyaltiesPlugin>
§freeze_delegate: Option<FreezeDelegatePlugin>
§burn_delegate: Option<BurnDelegatePlugin>
§transfer_delegate: Option<TransferDelegatePlugin>
§update_delegate: Option<UpdateDelegatePlugin>
§permanent_freeze_delegate: Option<PermanentFreezeDelegatePlugin>
§attributes: Option<AttributesPlugin>
§permanent_transfer_delegate: Option<PermanentTransferDelegatePlugin>
§permanent_burn_delegate: Option<PermanentBurnDelegatePlugin>
§edition: Option<EditionPlugin>
§master_edition: Option<MasterEditionPlugin>
§add_blocker: Option<AddBlockerPlugin>
§immutable_metadata: Option<ImmutableMetadataPlugin>
§verified_creators: Option<VerifiedCreatorsPlugin>
§autograph: Option<AutographPlugin>
§bubblegum_v2: Option<BubblegumV2Plugin>
§freeze_execute: Option<FreezeExecutePlugin>
Trait Implementations§
Source§impl Debug for PluginsList
impl Debug for PluginsList
Source§impl Default for PluginsList
impl Default for PluginsList
Source§fn default() -> PluginsList
fn default() -> PluginsList
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PluginsList
impl RefUnwindSafe for PluginsList
impl Send for PluginsList
impl Sync for PluginsList
impl Unpin for PluginsList
impl UnwindSafe for PluginsList
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> 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