pub struct PrivacyFindingDto {
pub label: String,
pub count: i64,
}Expand description
ISS-014 — Privacy Findings 区块单项(按 PrivacyLabel 聚合)。
绝不展原文:仅展示 {label} × {count} 元数据,与 redaction_findings 表
“不存原文“纪律一致(ADR 0013 §I-9.1 + audit test_schema_forbids_plaintext_columns)。
Fields§
§label: StringPrivacyLabel 字面量(secret / email / private_person / 等 8 类之一)
count: i64该 label 在本 approval 关联 session 内的 finding 命中次数(≥ 1)
Trait Implementations§
Source§impl Clone for PrivacyFindingDto
impl Clone for PrivacyFindingDto
Source§fn clone(&self) -> PrivacyFindingDto
fn clone(&self) -> PrivacyFindingDto
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 PrivacyFindingDto
impl Debug for PrivacyFindingDto
Source§impl<'de> Deserialize<'de> for PrivacyFindingDto
impl<'de> Deserialize<'de> for PrivacyFindingDto
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 PartialEq for PrivacyFindingDto
impl PartialEq for PrivacyFindingDto
Source§fn eq(&self, other: &PrivacyFindingDto) -> bool
fn eq(&self, other: &PrivacyFindingDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivacyFindingDto
impl Serialize for PrivacyFindingDto
impl Eq for PrivacyFindingDto
impl StructuralPartialEq for PrivacyFindingDto
Auto Trait Implementations§
impl Freeze for PrivacyFindingDto
impl RefUnwindSafe for PrivacyFindingDto
impl Send for PrivacyFindingDto
impl Sync for PrivacyFindingDto
impl Unpin for PrivacyFindingDto
impl UnsafeUnpin for PrivacyFindingDto
impl UnwindSafe for PrivacyFindingDto
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