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