pub struct GooglePrivacyDlpV2ByteContentItem {
pub data: Option<Vec<u8>>,
pub type_: Option<String>,
}Expand description
Container for bytes to inspect or redact.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data: Option<Vec<u8>>Content data to inspect or redact.
type_: Option<String>The type of data stored in the bytes string. Default will be TEXT_UTF8.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2ByteContentItem
impl Clone for GooglePrivacyDlpV2ByteContentItem
Source§fn clone(&self) -> GooglePrivacyDlpV2ByteContentItem
fn clone(&self) -> GooglePrivacyDlpV2ByteContentItem
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 Default for GooglePrivacyDlpV2ByteContentItem
impl Default for GooglePrivacyDlpV2ByteContentItem
Source§fn default() -> GooglePrivacyDlpV2ByteContentItem
fn default() -> GooglePrivacyDlpV2ByteContentItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2ByteContentItem
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2ByteContentItem
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
impl Part for GooglePrivacyDlpV2ByteContentItem
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2ByteContentItem
impl RefUnwindSafe for GooglePrivacyDlpV2ByteContentItem
impl Send for GooglePrivacyDlpV2ByteContentItem
impl Sync for GooglePrivacyDlpV2ByteContentItem
impl Unpin for GooglePrivacyDlpV2ByteContentItem
impl UnwindSafe for GooglePrivacyDlpV2ByteContentItem
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