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