pub struct RowAccessPolicyOverview {
pub row_access_policy_reference: RowAccessPolicyReference,
pub filter_predicate: String,
pub creation_time: Option<OffsetDateTime>,
pub last_modified_time: Option<OffsetDateTime>,
}Fields§
§row_access_policy_reference: RowAccessPolicyReferenceRequired. Reference describing the ID of this row access policy.
filter_predicate: StringRequired. A SQL boolean expression that represents the rows defined by this row access policy, similar to the boolean expression in a WHERE clause of a SELECT query on a table. References to other tables, routines, and temporary functions are not supported. Examples: region=“EU” date_field = CAST(‘2019-9-27’ as DATE) nullable_field is not NULL numeric_field BETWEEN 1.0 AND 5.0
creation_time: Option<OffsetDateTime>Output only. The time when this row access policy was created, in milliseconds since the epoch.
last_modified_time: Option<OffsetDateTime>Output only. The time when this row access policy was last modified, in milliseconds since the epoch.
Trait Implementations§
source§impl Clone for RowAccessPolicyOverview
impl Clone for RowAccessPolicyOverview
source§fn clone(&self) -> RowAccessPolicyOverview
fn clone(&self) -> RowAccessPolicyOverview
Returns a copy 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 RowAccessPolicyOverview
impl Debug for RowAccessPolicyOverview
source§impl Default for RowAccessPolicyOverview
impl Default for RowAccessPolicyOverview
source§fn default() -> RowAccessPolicyOverview
fn default() -> RowAccessPolicyOverview
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RowAccessPolicyOverview
impl<'de> Deserialize<'de> for RowAccessPolicyOverview
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 RowAccessPolicyOverview
impl PartialEq for RowAccessPolicyOverview
source§impl Serialize for RowAccessPolicyOverview
impl Serialize for RowAccessPolicyOverview
impl Eq for RowAccessPolicyOverview
impl StructuralPartialEq for RowAccessPolicyOverview
Auto Trait Implementations§
impl Freeze for RowAccessPolicyOverview
impl RefUnwindSafe for RowAccessPolicyOverview
impl Send for RowAccessPolicyOverview
impl Sync for RowAccessPolicyOverview
impl Unpin for RowAccessPolicyOverview
impl UnwindSafe for RowAccessPolicyOverview
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request