pub struct IssueChanges {
pub body: Option<ChangeFrom>,
pub title: Option<ChangeFrom>,
}
Fields§
§body: Option<ChangeFrom>
A change to the body, if any.
title: Option<ChangeFrom>
A change to the title, if any.
Trait Implementations§
Source§impl Clone for IssueChanges
impl Clone for IssueChanges
Source§fn clone(&self) -> IssueChanges
fn clone(&self) -> IssueChanges
Returns a copy 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 IssueChanges
impl Debug for IssueChanges
Source§impl<'de> Deserialize<'de> for IssueChanges
impl<'de> Deserialize<'de> for IssueChanges
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 Hash for IssueChanges
impl Hash for IssueChanges
Source§impl Ord for IssueChanges
impl Ord for IssueChanges
Source§fn cmp(&self, other: &IssueChanges) -> Ordering
fn cmp(&self, other: &IssueChanges) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IssueChanges
impl PartialEq for IssueChanges
Source§impl PartialOrd for IssueChanges
impl PartialOrd for IssueChanges
impl Eq for IssueChanges
impl StructuralPartialEq for IssueChanges
Auto Trait Implementations§
impl Freeze for IssueChanges
impl RefUnwindSafe for IssueChanges
impl Send for IssueChanges
impl Sync for IssueChanges
impl Unpin for IssueChanges
impl UnwindSafe for IssueChanges
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