pub struct EditInfo {
pub operation: String,
pub target: String,
pub files: Vec<PathBuf>,
pub message: Option<String>,
pub workflow: Option<String>,
}Expand description
Information about an edit operation for shadow commit.
Fields§
§operation: String§target: String§files: Vec<PathBuf>§message: Option<String>§workflow: Option<String>Auto Trait Implementations§
impl Freeze for EditInfo
impl RefUnwindSafe for EditInfo
impl Send for EditInfo
impl Sync for EditInfo
impl Unpin for EditInfo
impl UnsafeUnpin for EditInfo
impl UnwindSafe for EditInfo
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