pub struct RenderSection {
pub id: String,
pub label: String,
pub visible: bool,
}Expand description
A section in the rendered report.
Fields§
§id: StringSection identifier.
label: StringHuman-readable section label.
visible: boolWhether this section is visible by default.
Trait Implementations§
Source§impl Clone for RenderSection
impl Clone for RenderSection
Source§fn clone(&self) -> RenderSection
fn clone(&self) -> RenderSection
Returns a duplicate of the value. Read more
1.0.0 · 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 RenderSection
impl Debug for RenderSection
Source§impl<'de> Deserialize<'de> for RenderSection
impl<'de> Deserialize<'de> for RenderSection
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
Auto Trait Implementations§
impl Freeze for RenderSection
impl RefUnwindSafe for RenderSection
impl Send for RenderSection
impl Sync for RenderSection
impl Unpin for RenderSection
impl UnsafeUnpin for RenderSection
impl UnwindSafe for RenderSection
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