pub struct HiddenSettings {
pub name: String,
pub uri: String,
pub hash: [u8; 32],
}Expand description
Hidden settings for large mints used with off-chain data.
Fields§
§name: StringAsset prefix name
uri: StringShared URI
hash: [u8; 32]Hash of the hidden settings file
Trait Implementations§
Source§impl BorshDeserialize for HiddenSettings
impl BorshDeserialize for HiddenSettings
Source§impl BorshSerialize for HiddenSettings
impl BorshSerialize for HiddenSettings
Source§impl Clone for HiddenSettings
impl Clone for HiddenSettings
Source§fn clone(&self) -> HiddenSettings
fn clone(&self) -> HiddenSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HiddenSettings
impl Debug for HiddenSettings
Source§impl Default for HiddenSettings
impl Default for HiddenSettings
Source§fn default() -> HiddenSettings
fn default() -> HiddenSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HiddenSettings
impl RefUnwindSafe for HiddenSettings
impl Send for HiddenSettings
impl Sync for HiddenSettings
impl Unpin for HiddenSettings
impl UnwindSafe for HiddenSettings
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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