pub struct PartnerAttachmentsListRemoteRoutesResponseLinks {
pub pages: Option<PartnerAttachmentsListRemoteRoutesResponseLinksPages>,
}Expand description
PartnerAttachmentsListRemoteRoutesResponseLinks
JSON schema
{
"type": "object",
"properties": {
"pages": {
"examples": [
{
"pages": {
"first": "https://api.digitalocean.com/v2/account/keys?page=1",
"prev": "https://api.digitalocean.com/v2/account/keys?page=2"
}
}
],
"anyOf": [
{
"type": "object",
"properties": {
"first": {
"examples": [
"https://api.digitalocean.com/v2/images?page=1"
],
"type": "string",
"format": "uri"
},
"last": {
"examples": [
"https://api.digitalocean.com/v2/images?page=3"
],
"type": "string",
"format": "uri"
},
"next": {
"examples": [
"https://api.digitalocean.com/v2/images?page=2"
],
"type": "string",
"format": "uri"
}
}
},
{
"type": "object",
"properties": {
"first": {
"examples": [
"https://api.digitalocean.com/v2/images?page=1"
],
"type": "string",
"format": "uri"
},
"last": {
"examples": [
"https://api.digitalocean.com/v2/images?page=3"
],
"type": "string",
"format": "uri"
},
"prev": {
"examples": [
"https://api.digitalocean.com/v2/images?page=1"
],
"type": "string",
"format": "uri"
}
}
},
{}
]
}
}
}Fields§
§pages: Option<PartnerAttachmentsListRemoteRoutesResponseLinksPages>Trait Implementations§
Source§impl Clone for PartnerAttachmentsListRemoteRoutesResponseLinks
impl Clone for PartnerAttachmentsListRemoteRoutesResponseLinks
Source§fn clone(&self) -> PartnerAttachmentsListRemoteRoutesResponseLinks
fn clone(&self) -> PartnerAttachmentsListRemoteRoutesResponseLinks
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<'de> Deserialize<'de> for PartnerAttachmentsListRemoteRoutesResponseLinks
impl<'de> Deserialize<'de> for PartnerAttachmentsListRemoteRoutesResponseLinks
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<&PartnerAttachmentsListRemoteRoutesResponseLinks> for PartnerAttachmentsListRemoteRoutesResponseLinks
impl From<&PartnerAttachmentsListRemoteRoutesResponseLinks> for PartnerAttachmentsListRemoteRoutesResponseLinks
Source§fn from(value: &PartnerAttachmentsListRemoteRoutesResponseLinks) -> Self
fn from(value: &PartnerAttachmentsListRemoteRoutesResponseLinks) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PartnerAttachmentsListRemoteRoutesResponseLinks
impl RefUnwindSafe for PartnerAttachmentsListRemoteRoutesResponseLinks
impl Send for PartnerAttachmentsListRemoteRoutesResponseLinks
impl Sync for PartnerAttachmentsListRemoteRoutesResponseLinks
impl Unpin for PartnerAttachmentsListRemoteRoutesResponseLinks
impl UnsafeUnpin for PartnerAttachmentsListRemoteRoutesResponseLinks
impl UnwindSafe for PartnerAttachmentsListRemoteRoutesResponseLinks
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