#[non_exhaustive]pub struct Exfiltration {
pub sources: Vec<ExfilResource>,
pub targets: Vec<ExfilResource>,
pub total_exfiltrated_bytes: i64,
/* private fields */
}Expand description
Exfiltration represents a data exfiltration attempt from one or more sources
to one or more targets. The sources attribute lists the sources of the
exfiltrated data. The targets attribute lists the destinations the data was
copied to.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sources: Vec<ExfilResource>If there are multiple sources, then the data is considered “joined” between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
targets: Vec<ExfilResource>If there are multiple targets, each target would get a complete copy of the “joined” source data.
total_exfiltrated_bytes: i64Total exfiltrated bytes processed for the entire job.
Implementations§
Source§impl Exfiltration
impl Exfiltration
pub fn new() -> Self
Sourcepub fn set_sources<T, V>(self, v: T) -> Self
pub fn set_sources<T, V>(self, v: T) -> Self
Sourcepub fn set_targets<T, V>(self, v: T) -> Self
pub fn set_targets<T, V>(self, v: T) -> Self
Sourcepub fn set_total_exfiltrated_bytes<T: Into<i64>>(self, v: T) -> Self
pub fn set_total_exfiltrated_bytes<T: Into<i64>>(self, v: T) -> Self
Sets the value of total_exfiltrated_bytes.
§Example
ⓘ
let x = Exfiltration::new().set_total_exfiltrated_bytes(42);Trait Implementations§
Source§impl Clone for Exfiltration
impl Clone for Exfiltration
Source§fn clone(&self) -> Exfiltration
fn clone(&self) -> Exfiltration
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 Exfiltration
impl Debug for Exfiltration
Source§impl Default for Exfiltration
impl Default for Exfiltration
Source§fn default() -> Exfiltration
fn default() -> Exfiltration
Returns the “default value” for a type. Read more
Source§impl Message for Exfiltration
impl Message for Exfiltration
Source§impl PartialEq for Exfiltration
impl PartialEq for Exfiltration
impl StructuralPartialEq for Exfiltration
Auto Trait Implementations§
impl Freeze for Exfiltration
impl RefUnwindSafe for Exfiltration
impl Send for Exfiltration
impl Sync for Exfiltration
impl Unpin for Exfiltration
impl UnwindSafe for Exfiltration
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