pub struct AllNftInfoResponse<TNftExtension> {
pub access: OwnerOfResponse,
pub info: NftInfoResponse<TNftExtension>,
}Fields§
§access: OwnerOfResponseWho can transfer the token
info: NftInfoResponse<TNftExtension>Data on the token itself,
Trait Implementations§
Source§impl<TNftExtension: Clone> Clone for AllNftInfoResponse<TNftExtension>
impl<TNftExtension: Clone> Clone for AllNftInfoResponse<TNftExtension>
Source§fn clone(&self) -> AllNftInfoResponse<TNftExtension>
fn clone(&self) -> AllNftInfoResponse<TNftExtension>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<TNftExtension: Debug> Debug for AllNftInfoResponse<TNftExtension>
impl<TNftExtension: Debug> Debug for AllNftInfoResponse<TNftExtension>
Source§impl<'de, TNftExtension> Deserialize<'de> for AllNftInfoResponse<TNftExtension>where
TNftExtension: Deserialize<'de>,
impl<'de, TNftExtension> Deserialize<'de> for AllNftInfoResponse<TNftExtension>where
TNftExtension: Deserialize<'de>,
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
Source§impl<TNftExtension: JsonSchema> JsonSchema for AllNftInfoResponse<TNftExtension>
impl<TNftExtension: JsonSchema> JsonSchema for AllNftInfoResponse<TNftExtension>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl<TNftExtension: PartialEq> PartialEq for AllNftInfoResponse<TNftExtension>
impl<TNftExtension: PartialEq> PartialEq for AllNftInfoResponse<TNftExtension>
Source§fn eq(&self, other: &AllNftInfoResponse<TNftExtension>) -> bool
fn eq(&self, other: &AllNftInfoResponse<TNftExtension>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<TNftExtension> Serialize for AllNftInfoResponse<TNftExtension>where
TNftExtension: Serialize,
impl<TNftExtension> Serialize for AllNftInfoResponse<TNftExtension>where
TNftExtension: Serialize,
impl<TNftExtension: PartialEq> StructuralPartialEq for AllNftInfoResponse<TNftExtension>
Auto Trait Implementations§
impl<TNftExtension> Freeze for AllNftInfoResponse<TNftExtension>where
TNftExtension: Freeze,
impl<TNftExtension> RefUnwindSafe for AllNftInfoResponse<TNftExtension>where
TNftExtension: RefUnwindSafe,
impl<TNftExtension> Send for AllNftInfoResponse<TNftExtension>where
TNftExtension: Send,
impl<TNftExtension> Sync for AllNftInfoResponse<TNftExtension>where
TNftExtension: Sync,
impl<TNftExtension> Unpin for AllNftInfoResponse<TNftExtension>where
TNftExtension: Unpin,
impl<TNftExtension> UnsafeUnpin for AllNftInfoResponse<TNftExtension>where
TNftExtension: UnsafeUnpin,
impl<TNftExtension> UnwindSafe for AllNftInfoResponse<TNftExtension>where
TNftExtension: UnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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