Struct mpl_fixed_price_sale::instruction::ChangeMarket
source · [−]pub struct ChangeMarket {
pub new_name: Option<String>,
pub new_description: Option<String>,
pub mutable: Option<bool>,
pub new_price: Option<u64>,
pub new_pieces_in_one_wallet: Option<u64>,
}
Expand description
Instruction.
Fields
new_name: Option<String>
new_description: Option<String>
mutable: Option<bool>
new_price: Option<u64>
new_pieces_in_one_wallet: Option<u64>
Trait Implementations
sourceimpl BorshDeserialize for ChangeMarketwhere
Option<String>: BorshDeserialize,
Option<String>: BorshDeserialize,
Option<bool>: BorshDeserialize,
Option<u64>: BorshDeserialize,
Option<u64>: BorshDeserialize,
impl BorshDeserialize for ChangeMarketwhere
Option<String>: BorshDeserialize,
Option<String>: BorshDeserialize,
Option<bool>: BorshDeserialize,
Option<u64>: BorshDeserialize,
Option<u64>: BorshDeserialize,
sourcefn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes. Read more
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
Auto Trait Implementations
impl RefUnwindSafe for ChangeMarket
impl Send for ChangeMarket
impl Sync for ChangeMarket
impl Unpin for ChangeMarket
impl UnwindSafe for ChangeMarket
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more