pub struct ProjectsAssignResourcesResponseResourcesItemLinks {
pub self_: Option<String>,
}Expand description
The links object contains the self object, which contains the resource relationship.
JSON schema
{
"description": "The links object contains the `self` object, which contains the resource relationship.",
"type": "object",
"properties": {
"self": {
"description": "A URI that can be used to retrieve the resource.",
"examples": [
"https://api.digitalocean.com/v2/droplets/13457723"
],
"type": "string",
"format": "uri"
}
}
}Fields§
§self_: Option<String>A URI that can be used to retrieve the resource.
Trait Implementations§
Source§impl Clone for ProjectsAssignResourcesResponseResourcesItemLinks
impl Clone for ProjectsAssignResourcesResponseResourcesItemLinks
Source§fn clone(&self) -> ProjectsAssignResourcesResponseResourcesItemLinks
fn clone(&self) -> ProjectsAssignResourcesResponseResourcesItemLinks
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 ProjectsAssignResourcesResponseResourcesItemLinks
impl<'de> Deserialize<'de> for ProjectsAssignResourcesResponseResourcesItemLinks
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<&ProjectsAssignResourcesResponseResourcesItemLinks> for ProjectsAssignResourcesResponseResourcesItemLinks
impl From<&ProjectsAssignResourcesResponseResourcesItemLinks> for ProjectsAssignResourcesResponseResourcesItemLinks
Source§fn from(value: &ProjectsAssignResourcesResponseResourcesItemLinks) -> Self
fn from(value: &ProjectsAssignResourcesResponseResourcesItemLinks) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProjectsAssignResourcesResponseResourcesItemLinks
impl RefUnwindSafe for ProjectsAssignResourcesResponseResourcesItemLinks
impl Send for ProjectsAssignResourcesResponseResourcesItemLinks
impl Sync for ProjectsAssignResourcesResponseResourcesItemLinks
impl Unpin for ProjectsAssignResourcesResponseResourcesItemLinks
impl UnsafeUnpin for ProjectsAssignResourcesResponseResourcesItemLinks
impl UnwindSafe for ProjectsAssignResourcesResponseResourcesItemLinks
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