pub struct NewAccessLogEntryReadInfo {
pub parameters: HashMap<String, String>,
pub allowed_tags: Box<TagSummary>,
pub redacted_tags: Box<TagSummary>,
pub tokenized_tags: Box<TagSummary>,
pub returned_records: i32,
pub filtered_records: i32,
}Expand description
NewAccessLogEntryReadInfo : information available if the operation is of type "read". allowedTags are those that were allowed without transformation during the read. redactedTags are those that were redacted during the read. tokenizedTags are those that were tokenized during the read.
Fields§
§parameters: HashMap<String, String>the client-specified parameters representing the user on whose behalf this read is being carried out. Valid only for operation = read
returned_records: i32the number of records returned by the read, including those with allowed, redacted or tokenized spans
filtered_records: i32the number of records that were completely filtered out during the read operation
Implementations§
Source§impl NewAccessLogEntryReadInfo
impl NewAccessLogEntryReadInfo
Sourcepub fn new(
parameters: HashMap<String, String>,
allowed_tags: TagSummary,
redacted_tags: TagSummary,
tokenized_tags: TagSummary,
returned_records: i32,
filtered_records: i32,
) -> NewAccessLogEntryReadInfo
pub fn new( parameters: HashMap<String, String>, allowed_tags: TagSummary, redacted_tags: TagSummary, tokenized_tags: TagSummary, returned_records: i32, filtered_records: i32, ) -> NewAccessLogEntryReadInfo
information available if the operation is of type "read". allowedTags are those that were allowed without transformation during the read. redactedTags are those that were redacted during the read. tokenizedTags are those that were tokenized during the read.
Trait Implementations§
Source§impl Clone for NewAccessLogEntryReadInfo
impl Clone for NewAccessLogEntryReadInfo
Source§fn clone(&self) -> NewAccessLogEntryReadInfo
fn clone(&self) -> NewAccessLogEntryReadInfo
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for NewAccessLogEntryReadInfo
impl Debug for NewAccessLogEntryReadInfo
Source§impl Default for NewAccessLogEntryReadInfo
impl Default for NewAccessLogEntryReadInfo
Source§fn default() -> NewAccessLogEntryReadInfo
fn default() -> NewAccessLogEntryReadInfo
Source§impl<'de> Deserialize<'de> for NewAccessLogEntryReadInfo
impl<'de> Deserialize<'de> for NewAccessLogEntryReadInfo
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>,
Source§impl PartialEq for NewAccessLogEntryReadInfo
impl PartialEq for NewAccessLogEntryReadInfo
Source§fn eq(&self, other: &NewAccessLogEntryReadInfo) -> bool
fn eq(&self, other: &NewAccessLogEntryReadInfo) -> bool
self and other values to be equal, and is used by ==.