pub struct DataSourceEntry {
pub name: String,
pub description: String,
pub source_type: String,
pub contains_personal_data: bool,
}Expand description
A data source entry in the governance report.
Fields§
§name: StringSource name.
description: StringSource description.
source_type: StringType of source (synthetic, real, derived).
contains_personal_data: boolWhether the source contains personal data.
Trait Implementations§
Source§impl Clone for DataSourceEntry
impl Clone for DataSourceEntry
Source§fn clone(&self) -> DataSourceEntry
fn clone(&self) -> DataSourceEntry
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 DataSourceEntry
impl Debug for DataSourceEntry
Source§impl<'de> Deserialize<'de> for DataSourceEntry
impl<'de> Deserialize<'de> for DataSourceEntry
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 DataSourceEntry
impl RefUnwindSafe for DataSourceEntry
impl Send for DataSourceEntry
impl Sync for DataSourceEntry
impl Unpin for DataSourceEntry
impl UnwindSafe for DataSourceEntry
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