pub struct SplitPart {
pub title: String,
pub body: String,
pub files: Vec<String>,
}Expand description
One piece of a proposed decomposition.
Fields§
§title: String§body: StringThe issue body, or the rationale for a pull request slice.
files: Vec<String>The paths this slice carries. Empty for an issue split, where there is no diff to partition.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SplitPart
impl<'de> Deserialize<'de> for SplitPart
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
Auto Trait Implementations§
impl Freeze for SplitPart
impl RefUnwindSafe for SplitPart
impl Send for SplitPart
impl Sync for SplitPart
impl Unpin for SplitPart
impl UnsafeUnpin for SplitPart
impl UnwindSafe for SplitPart
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