pub struct PostGetCompressionSignaturesForOwnerBodyParams {
pub cursor: Option<String>,
pub limit: Option<Limit>,
pub owner: SerializablePubkey,
}Expand description
PostGetCompressionSignaturesForOwnerBodyParams
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 PostGetCompressionSignaturesForOwnerBodyParams
impl Clone for PostGetCompressionSignaturesForOwnerBodyParams
Source§fn clone(&self) -> PostGetCompressionSignaturesForOwnerBodyParams
fn clone(&self) -> PostGetCompressionSignaturesForOwnerBodyParams
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 PostGetCompressionSignaturesForOwnerBodyParams
impl<'de> Deserialize<'de> for PostGetCompressionSignaturesForOwnerBodyParams
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<PostGetCompressionSignaturesForOwnerBodyParams> for PostGetCompressionSignaturesForOwnerBodyParams
impl From<PostGetCompressionSignaturesForOwnerBodyParams> for PostGetCompressionSignaturesForOwnerBodyParams
Source§fn from(value: PostGetCompressionSignaturesForOwnerBodyParams) -> Self
fn from(value: PostGetCompressionSignaturesForOwnerBodyParams) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PostGetCompressionSignaturesForOwnerBodyParams> for PostGetCompressionSignaturesForOwnerBodyParams
impl TryFrom<PostGetCompressionSignaturesForOwnerBodyParams> for PostGetCompressionSignaturesForOwnerBodyParams
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: PostGetCompressionSignaturesForOwnerBodyParams,
) -> Result<Self, ConversionError>
fn try_from( value: PostGetCompressionSignaturesForOwnerBodyParams, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PostGetCompressionSignaturesForOwnerBodyParams
impl RefUnwindSafe for PostGetCompressionSignaturesForOwnerBodyParams
impl Send for PostGetCompressionSignaturesForOwnerBodyParams
impl Sync for PostGetCompressionSignaturesForOwnerBodyParams
impl Unpin for PostGetCompressionSignaturesForOwnerBodyParams
impl UnsafeUnpin for PostGetCompressionSignaturesForOwnerBodyParams
impl UnwindSafe for PostGetCompressionSignaturesForOwnerBodyParams
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