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