pub struct RepositoryEditedChanges {
pub default_branch: Option<RepositoryEditedChangesDefaultBranch>,
pub description: Option<RepositoryEditedChangesDescription>,
pub homepage: Option<RepositoryEditedChangesHomepage>,
pub topics: Option<RepositoryEditedChangesTopics>,
}
Expand description
RepositoryEditedChanges
JSON schema
{
"type": "object",
"properties": {
"default_branch": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"type": "string"
}
},
"additionalProperties": false
},
"description": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"homepage": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"topics": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
Fields§
§default_branch: Option<RepositoryEditedChangesDefaultBranch>
§description: Option<RepositoryEditedChangesDescription>
§homepage: Option<RepositoryEditedChangesHomepage>
§topics: Option<RepositoryEditedChangesTopics>
Implementations§
Source§impl RepositoryEditedChanges
impl RepositoryEditedChanges
pub fn builder() -> RepositoryEditedChanges
Trait Implementations§
Source§impl Clone for RepositoryEditedChanges
impl Clone for RepositoryEditedChanges
Source§fn clone(&self) -> RepositoryEditedChanges
fn clone(&self) -> RepositoryEditedChanges
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 Debug for RepositoryEditedChanges
impl Debug for RepositoryEditedChanges
Source§impl<'de> Deserialize<'de> for RepositoryEditedChanges
impl<'de> Deserialize<'de> for RepositoryEditedChanges
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<&RepositoryEditedChanges> for RepositoryEditedChanges
impl From<&RepositoryEditedChanges> for RepositoryEditedChanges
Source§fn from(value: &RepositoryEditedChanges) -> Self
fn from(value: &RepositoryEditedChanges) -> Self
Converts to this type from the input type.
Source§impl From<RepositoryEditedChanges> for RepositoryEditedChanges
impl From<RepositoryEditedChanges> for RepositoryEditedChanges
Source§fn from(value: RepositoryEditedChanges) -> Self
fn from(value: RepositoryEditedChanges) -> Self
Converts to this type from the input type.
Source§impl Serialize for RepositoryEditedChanges
impl Serialize for RepositoryEditedChanges
Auto Trait Implementations§
impl Freeze for RepositoryEditedChanges
impl RefUnwindSafe for RepositoryEditedChanges
impl Send for RepositoryEditedChanges
impl Sync for RepositoryEditedChanges
impl Unpin for RepositoryEditedChanges
impl UnwindSafe for RepositoryEditedChanges
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