pub struct UpdateNftPayload {
pub mint_address: String,
pub name: String,
pub update_authority: String,
pub symbol: String,
pub url: String,
pub seller_fee_basis_points: usize,
pub confirmation: String,
}
Fields§
§mint_address: String
§name: String
§symbol: String
§url: String
§seller_fee_basis_points: usize
§confirmation: String
Trait Implementations§
Source§impl Debug for UpdateNftPayload
impl Debug for UpdateNftPayload
Source§impl<'de> Deserialize<'de> for UpdateNftPayload
impl<'de> Deserialize<'de> for UpdateNftPayload
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateNftPayload
impl RefUnwindSafe for UpdateNftPayload
impl Send for UpdateNftPayload
impl Sync for UpdateNftPayload
impl Unpin for UpdateNftPayload
impl UnwindSafe for UpdateNftPayload
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