pub struct AvailableGitRef {
pub name: String,
pub git_commit: String,
pub recommended_action: String,
pub recommended_action_template: Option<ActionTemplate>,
}Expand description
Git-only branch tip that is not yet a Heddle thread tip.
Fields§
§name: String§git_commit: String§recommended_action: String§recommended_action_template: Option<ActionTemplate>Trait Implementations§
Source§impl Clone for AvailableGitRef
impl Clone for AvailableGitRef
Source§fn clone(&self) -> AvailableGitRef
fn clone(&self) -> AvailableGitRef
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 AvailableGitRef
impl Debug for AvailableGitRef
Auto Trait Implementations§
impl Freeze for AvailableGitRef
impl RefUnwindSafe for AvailableGitRef
impl Send for AvailableGitRef
impl Sync for AvailableGitRef
impl Unpin for AvailableGitRef
impl UnsafeUnpin for AvailableGitRef
impl UnwindSafe for AvailableGitRef
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