Struct PluginsList

Source
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

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PluginsList

Source§

fn default() -> PluginsList

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V