pub struct RebaseTodoEntry {
pub action: String,
pub hash: String,
pub short_hash: String,
pub message: String,
}Expand description
Rebase todo entry for interactive rebase
Fields§
§action: String§hash: String§short_hash: String§message: StringTrait Implementations§
Source§impl Clone for RebaseTodoEntry
impl Clone for RebaseTodoEntry
Source§fn clone(&self) -> RebaseTodoEntry
fn clone(&self) -> RebaseTodoEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RebaseTodoEntry
impl Debug for RebaseTodoEntry
Source§impl<'de> Deserialize<'de> for RebaseTodoEntry
impl<'de> Deserialize<'de> for RebaseTodoEntry
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 RebaseTodoEntry
impl RefUnwindSafe for RebaseTodoEntry
impl Send for RebaseTodoEntry
impl Sync for RebaseTodoEntry
impl Unpin for RebaseTodoEntry
impl UnsafeUnpin for RebaseTodoEntry
impl UnwindSafe for RebaseTodoEntry
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