pub struct InstallationDeletedRepositoriesItem {
pub full_name: String,
pub id: i64,
pub name: String,
pub node_id: String,
pub private: bool,
}
Expand description
InstallationDeletedRepositoriesItem
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 InstallationDeletedRepositoriesItem
impl Clone for InstallationDeletedRepositoriesItem
Source§fn clone(&self) -> InstallationDeletedRepositoriesItem
fn clone(&self) -> InstallationDeletedRepositoriesItem
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 InstallationDeletedRepositoriesItem
impl<'de> Deserialize<'de> for InstallationDeletedRepositoriesItem
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<&InstallationDeletedRepositoriesItem> for InstallationDeletedRepositoriesItem
impl From<&InstallationDeletedRepositoriesItem> for InstallationDeletedRepositoriesItem
Source§fn from(value: &InstallationDeletedRepositoriesItem) -> Self
fn from(value: &InstallationDeletedRepositoriesItem) -> Self
Converts to this type from the input type.
Source§impl From<InstallationDeletedRepositoriesItem> for InstallationDeletedRepositoriesItem
impl From<InstallationDeletedRepositoriesItem> for InstallationDeletedRepositoriesItem
Source§fn from(value: InstallationDeletedRepositoriesItem) -> Self
fn from(value: InstallationDeletedRepositoriesItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstallationDeletedRepositoriesItem
impl RefUnwindSafe for InstallationDeletedRepositoriesItem
impl Send for InstallationDeletedRepositoriesItem
impl Sync for InstallationDeletedRepositoriesItem
impl Unpin for InstallationDeletedRepositoriesItem
impl UnwindSafe for InstallationDeletedRepositoriesItem
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