pub struct InstallationLite {
pub id: i64,
pub node_id: String,
}
Expand description
Installation
JSON schema
{
"title": "InstallationLite",
"description": "Installation",
"type": "object",
"required": [
"id",
"node_id"
],
"properties": {
"id": {
"description": "The ID of the installation.",
"type": "integer"
},
"node_id": {
"type": "string"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema"
}
Fields§
§id: i64
The ID of the installation.
node_id: String
Implementations§
Source§impl InstallationLite
impl InstallationLite
pub fn builder() -> InstallationLite
Trait Implementations§
Source§impl Clone for InstallationLite
impl Clone for InstallationLite
Source§fn clone(&self) -> InstallationLite
fn clone(&self) -> InstallationLite
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InstallationLite
impl Debug for InstallationLite
Source§impl<'de> Deserialize<'de> for InstallationLite
impl<'de> Deserialize<'de> for InstallationLite
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<&InstallationLite> for InstallationLite
impl From<&InstallationLite> for InstallationLite
Source§fn from(value: &InstallationLite) -> Self
fn from(value: &InstallationLite) -> Self
Converts to this type from the input type.
Source§impl From<InstallationLite> for InstallationLite
impl From<InstallationLite> for InstallationLite
Source§fn from(value: InstallationLite) -> Self
fn from(value: InstallationLite) -> Self
Converts to this type from the input type.
Source§impl Serialize for InstallationLite
impl Serialize for InstallationLite
Source§impl TryFrom<InstallationLite> for InstallationLite
impl TryFrom<InstallationLite> for InstallationLite
Auto Trait Implementations§
impl Freeze for InstallationLite
impl RefUnwindSafe for InstallationLite
impl Send for InstallationLite
impl Sync for InstallationLite
impl Unpin for InstallationLite
impl UnwindSafe for InstallationLite
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