pub struct PostGetCompressedMintTokenHoldersBodyParams {
pub cursor: Option<Base58String>,
pub limit: Option<Limit>,
pub mint: SerializablePubkey,
}Expand description
PostGetCompressedMintTokenHoldersBodyParams
JSON schema
{
"type": "object",
"required": [
"mint"
],
"properties": {
"cursor": {
"oneOf": [
{
"type": "null"
},
{
"allOf": [
{
"$ref": "#/components/schemas/Base58String"
}
]
}
]
},
"limit": {
"oneOf": [
{
"type": "null"
},
{
"allOf": [
{
"$ref": "#/components/schemas/Limit"
}
]
}
]
},
"mint": {
"$ref": "#/components/schemas/SerializablePubkey"
}
},
"additionalProperties": false
}Fields§
§cursor: Option<Base58String>§limit: Option<Limit>§mint: SerializablePubkeyImplementations§
Trait Implementations§
Source§impl Clone for PostGetCompressedMintTokenHoldersBodyParams
impl Clone for PostGetCompressedMintTokenHoldersBodyParams
Source§fn clone(&self) -> PostGetCompressedMintTokenHoldersBodyParams
fn clone(&self) -> PostGetCompressedMintTokenHoldersBodyParams
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<'de> Deserialize<'de> for PostGetCompressedMintTokenHoldersBodyParams
impl<'de> Deserialize<'de> for PostGetCompressedMintTokenHoldersBodyParams
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 From<PostGetCompressedMintTokenHoldersBodyParams> for PostGetCompressedMintTokenHoldersBodyParams
impl From<PostGetCompressedMintTokenHoldersBodyParams> for PostGetCompressedMintTokenHoldersBodyParams
Source§fn from(value: PostGetCompressedMintTokenHoldersBodyParams) -> Self
fn from(value: PostGetCompressedMintTokenHoldersBodyParams) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PostGetCompressedMintTokenHoldersBodyParams> for PostGetCompressedMintTokenHoldersBodyParams
impl TryFrom<PostGetCompressedMintTokenHoldersBodyParams> for PostGetCompressedMintTokenHoldersBodyParams
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: PostGetCompressedMintTokenHoldersBodyParams,
) -> Result<Self, ConversionError>
fn try_from( value: PostGetCompressedMintTokenHoldersBodyParams, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PostGetCompressedMintTokenHoldersBodyParams
impl RefUnwindSafe for PostGetCompressedMintTokenHoldersBodyParams
impl Send for PostGetCompressedMintTokenHoldersBodyParams
impl Sync for PostGetCompressedMintTokenHoldersBodyParams
impl Unpin for PostGetCompressedMintTokenHoldersBodyParams
impl UnsafeUnpin for PostGetCompressedMintTokenHoldersBodyParams
impl UnwindSafe for PostGetCompressedMintTokenHoldersBodyParams
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