pub struct InstallationCreatedRepositoriesItem {
pub full_name: String,
pub id: i64,
pub name: String,
pub node_id: String,
pub private: bool,
}
Expand description
InstallationCreatedRepositoriesItem
JSON schema
{
"type": "object",
"required": [
"full_name",
"id",
"name",
"node_id",
"private"
],
"properties": {
"full_name": {
"type": "string"
},
"id": {
"description": "Unique identifier of the repository",
"type": "integer"
},
"name": {
"description": "The name of the repository.",
"type": "string"
},
"node_id": {
"type": "string"
},
"private": {
"description": "Whether the repository is private or public.",
"type": "boolean"
}
},
"additionalProperties": false
}
Fields§
§full_name: String
§id: i64
Unique identifier of the repository
name: String
The name of the repository.
node_id: String
§private: bool
Whether the repository is private or public.
Implementations§
Trait Implementations§
Source§impl Clone for InstallationCreatedRepositoriesItem
impl Clone for InstallationCreatedRepositoriesItem
Source§fn clone(&self) -> InstallationCreatedRepositoriesItem
fn clone(&self) -> InstallationCreatedRepositoriesItem
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<'de> Deserialize<'de> for InstallationCreatedRepositoriesItem
impl<'de> Deserialize<'de> for InstallationCreatedRepositoriesItem
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<&InstallationCreatedRepositoriesItem> for InstallationCreatedRepositoriesItem
impl From<&InstallationCreatedRepositoriesItem> for InstallationCreatedRepositoriesItem
Source§fn from(value: &InstallationCreatedRepositoriesItem) -> Self
fn from(value: &InstallationCreatedRepositoriesItem) -> Self
Converts to this type from the input type.
Source§impl From<InstallationCreatedRepositoriesItem> for InstallationCreatedRepositoriesItem
impl From<InstallationCreatedRepositoriesItem> for InstallationCreatedRepositoriesItem
Source§fn from(value: InstallationCreatedRepositoriesItem) -> Self
fn from(value: InstallationCreatedRepositoriesItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstallationCreatedRepositoriesItem
impl RefUnwindSafe for InstallationCreatedRepositoriesItem
impl Send for InstallationCreatedRepositoriesItem
impl Sync for InstallationCreatedRepositoriesItem
impl Unpin for InstallationCreatedRepositoriesItem
impl UnwindSafe for InstallationCreatedRepositoriesItem
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