pub struct RefPublicationIssue {
pub code: &'static str,
pub ref_name: Option<String>,
pub message: String,
pub blocking: bool,
}Expand description
One recognized interrupted-publication or local-debris condition.
Fields§
§code: &'static strStable diagnostic code.
ref_name: Option<String>Ref name when the condition belongs to one ref.
message: StringHuman-readable diagnosis without host paths.
blocking: boolWhether verification must return non-zero and unrelated mutation must remain blocked.
Trait Implementations§
Source§impl Clone for RefPublicationIssue
impl Clone for RefPublicationIssue
Source§fn clone(&self) -> RefPublicationIssue
fn clone(&self) -> RefPublicationIssue
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 RefPublicationIssue
impl Debug for RefPublicationIssue
impl Eq for RefPublicationIssue
Source§impl PartialEq for RefPublicationIssue
impl PartialEq for RefPublicationIssue
impl StructuralPartialEq for RefPublicationIssue
Auto Trait Implementations§
impl Freeze for RefPublicationIssue
impl RefUnwindSafe for RefPublicationIssue
impl Send for RefPublicationIssue
impl Sync for RefPublicationIssue
impl Unpin for RefPublicationIssue
impl UnsafeUnpin for RefPublicationIssue
impl UnwindSafe for RefPublicationIssue
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