pub struct RowLevelSecurityStatistics {
pub row_level_security_applied: Option<bool>,
}Expand description
Statistics for row-level security.
This type is not used in any activity, and only used as part of another schema.
Fields§
§row_level_security_applied: Option<bool>Whether any accessed data was protected by row access policies.
Trait Implementations§
Source§impl Clone for RowLevelSecurityStatistics
impl Clone for RowLevelSecurityStatistics
Source§fn clone(&self) -> RowLevelSecurityStatistics
fn clone(&self) -> RowLevelSecurityStatistics
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 RowLevelSecurityStatistics
impl Debug for RowLevelSecurityStatistics
Source§impl Default for RowLevelSecurityStatistics
impl Default for RowLevelSecurityStatistics
Source§fn default() -> RowLevelSecurityStatistics
fn default() -> RowLevelSecurityStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RowLevelSecurityStatistics
impl<'de> Deserialize<'de> for RowLevelSecurityStatistics
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 RowLevelSecurityStatistics
Auto Trait Implementations§
impl Freeze for RowLevelSecurityStatistics
impl RefUnwindSafe for RowLevelSecurityStatistics
impl Send for RowLevelSecurityStatistics
impl Sync for RowLevelSecurityStatistics
impl Unpin for RowLevelSecurityStatistics
impl UnwindSafe for RowLevelSecurityStatistics
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