pub struct ReportPanelEntry {
pub path: ManifestPanelPath,
pub label: Option<PanelLabel>,
pub role: Option<PanelRole>,
}Expand description
One manifest panel entry on a report command (required when mode is review).
Fields§
§path: ManifestPanelPath.xhtml path relative to the manifest / ui_root.
label: Option<PanelLabel>Optional pane heading (defaults to basename at stitch time).
role: Option<PanelRole>Optional CSS role.
Trait Implementations§
Source§impl Clone for ReportPanelEntry
impl Clone for ReportPanelEntry
Source§fn clone(&self) -> ReportPanelEntry
fn clone(&self) -> ReportPanelEntry
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 ReportPanelEntry
impl Debug for ReportPanelEntry
Source§impl<'de> Deserialize<'de> for ReportPanelEntry
impl<'de> Deserialize<'de> for ReportPanelEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ReportPanelEntry
Source§impl PartialEq for ReportPanelEntry
impl PartialEq for ReportPanelEntry
Source§impl Serialize for ReportPanelEntry
impl Serialize for ReportPanelEntry
impl StructuralPartialEq for ReportPanelEntry
Auto Trait Implementations§
impl Freeze for ReportPanelEntry
impl RefUnwindSafe for ReportPanelEntry
impl Send for ReportPanelEntry
impl Sync for ReportPanelEntry
impl Unpin for ReportPanelEntry
impl UnsafeUnpin for ReportPanelEntry
impl UnwindSafe for ReportPanelEntry
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