pub struct Creator {
pub address: [u8; 32],
pub verified: bool,
pub share: u8,
}Expand description
A creator with an address and share.
Fields§
§address: [u8; 32]Creator’s public key.
verified: boolWhether this creator has verified the metadata.
Share of royalties (0-100, all shares must sum to 100).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Creator
impl RefUnwindSafe for Creator
impl Send for Creator
impl Sync for Creator
impl Unpin for Creator
impl UnsafeUnpin for Creator
impl UnwindSafe for Creator
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