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