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