pub struct RenderOptions {
pub artifact_url: Option<String>,
pub run_url: Option<String>,
pub base_sha: Option<String>,
pub head_sha: Option<String>,
pub commit_url: Option<String>,
pub collapse_ranges: bool,
}Expand description
Decoration inputs and options for rendering.
Fields§
§artifact_url: Option<String>Link to the full coverage-summary artifact.
run_url: Option<String>Link to the CI run.
base_sha: Option<String>Base (merge-base) commit SHA.
head_sha: Option<String>Head commit SHA.
commit_url: Option<String>Commit-URL prefix for linking SHAs (e.g. https://…/<repo>/commit).
collapse_ranges: boolCollapse consecutive uncovered new lines into ranges (e.g. 9-11).
Trait Implementations§
Source§impl Clone for RenderOptions
impl Clone for RenderOptions
Source§fn clone(&self) -> RenderOptions
fn clone(&self) -> RenderOptions
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 RenderOptions
impl Debug for RenderOptions
Source§impl Default for RenderOptions
impl Default for RenderOptions
Source§fn default() -> RenderOptions
fn default() -> RenderOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderOptions
impl RefUnwindSafe for RenderOptions
impl Send for RenderOptions
impl Sync for RenderOptions
impl Unpin for RenderOptions
impl UnsafeUnpin for RenderOptions
impl UnwindSafe for RenderOptions
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