pub struct ReportData {
pub component: Component,
pub custom_data: Option<CustomData>,
pub variable: Variable,
pub variable_attribute: Vec<VariableAttribute, 4usize>,
pub variable_characteristics: Option<VariableCharacteristics>,
}Expand description
Class to report components, variables and variable attributes and characteristics.
Fields§
§component: Component§custom_data: Option<CustomData>§variable: Variable§variable_attribute: Vec<VariableAttribute, 4usize>§variable_characteristics: Option<VariableCharacteristics>Trait Implementations§
Source§impl Clone for ReportData
impl Clone for ReportData
Source§fn clone(&self) -> ReportData
fn clone(&self) -> ReportData
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 ReportData
impl Debug for ReportData
Source§impl PartialEq for ReportData
impl PartialEq for ReportData
impl StructuralPartialEq for ReportData
Auto Trait Implementations§
impl Freeze for ReportData
impl RefUnwindSafe for ReportData
impl Send for ReportData
impl Sync for ReportData
impl Unpin for ReportData
impl UnsafeUnpin for ReportData
impl UnwindSafe for ReportData
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