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