pub struct GeneratedArtifact {
pub repo: String,
pub path: String,
pub generator: String,
pub generated_public_doc: bool,
pub hand_edited: bool,
}Expand description
Generated artifact or public front-page change.
Fields§
§repo: StringRepository that owns the artifact.
path: StringArtifact path.
generator: StringTool that generated or checked the artifact.
generated_public_doc: boolWhether the artifact is part of a generated public docs lane.
hand_edited: boolWhether the capsule attempted a hand edit.
Implementations§
Trait Implementations§
Source§impl Clone for GeneratedArtifact
impl Clone for GeneratedArtifact
Source§fn clone(&self) -> GeneratedArtifact
fn clone(&self) -> GeneratedArtifact
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 GeneratedArtifact
impl Debug for GeneratedArtifact
impl Eq for GeneratedArtifact
Source§impl PartialEq for GeneratedArtifact
impl PartialEq for GeneratedArtifact
Source§fn eq(&self, other: &GeneratedArtifact) -> bool
fn eq(&self, other: &GeneratedArtifact) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GeneratedArtifact
Auto Trait Implementations§
impl Freeze for GeneratedArtifact
impl RefUnwindSafe for GeneratedArtifact
impl Send for GeneratedArtifact
impl Sync for GeneratedArtifact
impl Unpin for GeneratedArtifact
impl UnsafeUnpin for GeneratedArtifact
impl UnwindSafe for GeneratedArtifact
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