pub struct ReservedIPv6ListResponseLinks {
pub pages: Option<ReservedIPv6ListResponseLinksPages>,
}Expand description
ReservedIPv6ListResponseLinks
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<ReservedIPv6ListResponseLinksPages>Trait Implementations§
Source§impl Clone for ReservedIPv6ListResponseLinks
impl Clone for ReservedIPv6ListResponseLinks
Source§fn clone(&self) -> ReservedIPv6ListResponseLinks
fn clone(&self) -> ReservedIPv6ListResponseLinks
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 ReservedIPv6ListResponseLinks
impl<'de> Deserialize<'de> for ReservedIPv6ListResponseLinks
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<&ReservedIPv6ListResponseLinks> for ReservedIPv6ListResponseLinks
impl From<&ReservedIPv6ListResponseLinks> for ReservedIPv6ListResponseLinks
Source§fn from(value: &ReservedIPv6ListResponseLinks) -> Self
fn from(value: &ReservedIPv6ListResponseLinks) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReservedIPv6ListResponseLinks
impl RefUnwindSafe for ReservedIPv6ListResponseLinks
impl Send for ReservedIPv6ListResponseLinks
impl Sync for ReservedIPv6ListResponseLinks
impl Unpin for ReservedIPv6ListResponseLinks
impl UnsafeUnpin for ReservedIPv6ListResponseLinks
impl UnwindSafe for ReservedIPv6ListResponseLinks
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