pub struct ProjectEditedChangesBody {
pub from: String,
}
Expand description
ProjectEditedChangesBody
JSON schema
{
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the body if the action was `edited`.",
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§from: String
The previous version of the body if the action was edited
.
Implementations§
Source§impl ProjectEditedChangesBody
impl ProjectEditedChangesBody
pub fn builder() -> ProjectEditedChangesBody
Trait Implementations§
Source§impl Clone for ProjectEditedChangesBody
impl Clone for ProjectEditedChangesBody
Source§fn clone(&self) -> ProjectEditedChangesBody
fn clone(&self) -> ProjectEditedChangesBody
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 ProjectEditedChangesBody
impl Debug for ProjectEditedChangesBody
Source§impl<'de> Deserialize<'de> for ProjectEditedChangesBody
impl<'de> Deserialize<'de> for ProjectEditedChangesBody
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<&ProjectEditedChangesBody> for ProjectEditedChangesBody
impl From<&ProjectEditedChangesBody> for ProjectEditedChangesBody
Source§fn from(value: &ProjectEditedChangesBody) -> Self
fn from(value: &ProjectEditedChangesBody) -> Self
Converts to this type from the input type.
Source§impl From<ProjectEditedChangesBody> for ProjectEditedChangesBody
impl From<ProjectEditedChangesBody> for ProjectEditedChangesBody
Source§fn from(value: ProjectEditedChangesBody) -> Self
fn from(value: ProjectEditedChangesBody) -> Self
Converts to this type from the input type.
Source§impl Serialize for ProjectEditedChangesBody
impl Serialize for ProjectEditedChangesBody
Auto Trait Implementations§
impl Freeze for ProjectEditedChangesBody
impl RefUnwindSafe for ProjectEditedChangesBody
impl Send for ProjectEditedChangesBody
impl Sync for ProjectEditedChangesBody
impl Unpin for ProjectEditedChangesBody
impl UnwindSafe for ProjectEditedChangesBody
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