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
Source§impl JsonSchema for AvailableGitRef
impl JsonSchema for AvailableGitRef
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto 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