pub struct ReportData<CustomDataType = NoCustomData> {
pub component: Component<CustomDataType>,
pub custom_data: Option<CustomDataType>,
pub variable: Variable<CustomDataType>,
pub variable_attribute: Vec<VariableAttribute<CustomDataType>, 4usize>,
pub variable_characteristics: Option<VariableCharacteristics<CustomDataType>>,
}Expand description
Class to report components, variables and variable attributes and characteristics.
Fields§
§component: Component<CustomDataType>§custom_data: Option<CustomDataType>§variable: Variable<CustomDataType>§variable_attribute: Vec<VariableAttribute<CustomDataType>, 4usize>§variable_characteristics: Option<VariableCharacteristics<CustomDataType>>Trait Implementations§
Source§impl<CustomDataType: Clone> Clone for ReportData<CustomDataType>
impl<CustomDataType: Clone> Clone for ReportData<CustomDataType>
Source§fn clone(&self) -> ReportData<CustomDataType>
fn clone(&self) -> ReportData<CustomDataType>
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<CustomDataType: Debug> Debug for ReportData<CustomDataType>
impl<CustomDataType: Debug> Debug for ReportData<CustomDataType>
Source§impl<'de, CustomDataType> Deserialize<'de> for ReportData<CustomDataType>where
CustomDataType: Deserialize<'de>,
impl<'de, CustomDataType> Deserialize<'de> for ReportData<CustomDataType>where
CustomDataType: Deserialize<'de>,
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
Source§impl<CustomDataType: PartialEq> PartialEq for ReportData<CustomDataType>
impl<CustomDataType: PartialEq> PartialEq for ReportData<CustomDataType>
Source§impl<CustomDataType> Serialize for ReportData<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType> Serialize for ReportData<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType: PartialEq> StructuralPartialEq for ReportData<CustomDataType>
Source§impl<CustomDataType> Validate for ReportData<CustomDataType>
Available on crate features alloc and validate only.
impl<CustomDataType> Validate for ReportData<CustomDataType>
Available on crate features
alloc and validate only.Auto Trait Implementations§
impl<CustomDataType> Freeze for ReportData<CustomDataType>where
CustomDataType: Freeze,
impl<CustomDataType> RefUnwindSafe for ReportData<CustomDataType>where
CustomDataType: RefUnwindSafe,
impl<CustomDataType> Send for ReportData<CustomDataType>where
CustomDataType: Send,
impl<CustomDataType> Sync for ReportData<CustomDataType>where
CustomDataType: Sync,
impl<CustomDataType> Unpin for ReportData<CustomDataType>where
CustomDataType: Unpin,
impl<CustomDataType> UnsafeUnpin for ReportData<CustomDataType>where
CustomDataType: UnsafeUnpin,
impl<CustomDataType> UnwindSafe for ReportData<CustomDataType>where
CustomDataType: UnwindSafe,
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