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