Struct octokit_rs::webhook::InstallationLite
source · 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: i64The ID of the installation.
node_id: StringImplementations§
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 copy 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 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