pub struct OpenEditionMinterSetupParams<'a> {Show 13 fields
pub router: &'a mut StargazeApp,
pub minter_admin: Addr,
pub collection_params: CollectionParams,
pub start_time: Option<Timestamp>,
pub nft_data: NftData,
pub per_address_limit: u32,
pub end_time: Option<Timestamp>,
pub num_tokens: Option<u32>,
pub minter_code_id: u64,
pub factory_code_id: u64,
pub sg721_code_id: u64,
pub init_msg: Option<OpenEditionMinterInitMsgExtension>,
pub custom_params: Option<OpenEditionMinterParams>,
}
Fields§
§router: &'a mut StargazeApp
§minter_admin: Addr
§collection_params: CollectionParams
§start_time: Option<Timestamp>
§nft_data: NftData
§per_address_limit: u32
§end_time: Option<Timestamp>
§num_tokens: Option<u32>
§minter_code_id: u64
§factory_code_id: u64
§sg721_code_id: u64
§init_msg: Option<OpenEditionMinterInitMsgExtension>
§custom_params: Option<OpenEditionMinterParams>
Auto Trait Implementations§
impl<'a> Freeze for OpenEditionMinterSetupParams<'a>
impl<'a> !RefUnwindSafe for OpenEditionMinterSetupParams<'a>
impl<'a> !Send for OpenEditionMinterSetupParams<'a>
impl<'a> !Sync for OpenEditionMinterSetupParams<'a>
impl<'a> Unpin for OpenEditionMinterSetupParams<'a>
impl<'a> !UnwindSafe for OpenEditionMinterSetupParams<'a>
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