pub struct SystemRelationSecurity {
pub table: Option<SystemAcl>,
pub columns: BTreeMap<String, SystemAcl>,
}Fields§
§table: Option<SystemAcl>§columns: BTreeMap<String, SystemAcl>Implementations§
Source§impl SystemRelationSecurity
impl SystemRelationSecurity
pub fn security(&self, relation: SystemRelation) -> BoundTableSecurity
pub fn entry(&self, column: Option<&str>) -> Option<&SystemAcl>
Trait Implementations§
Source§impl Clone for SystemRelationSecurity
impl Clone for SystemRelationSecurity
Source§impl Debug for SystemRelationSecurity
impl Debug for SystemRelationSecurity
Source§impl Default for SystemRelationSecurity
impl Default for SystemRelationSecurity
impl Eq for SystemRelationSecurity
Source§impl PartialEq for SystemRelationSecurity
impl PartialEq for SystemRelationSecurity
impl StructuralPartialEq for SystemRelationSecurity
Auto Trait Implementations§
impl Freeze for SystemRelationSecurity
impl RefUnwindSafe for SystemRelationSecurity
impl Send for SystemRelationSecurity
impl Sync for SystemRelationSecurity
impl Unpin for SystemRelationSecurity
impl UnsafeUnpin for SystemRelationSecurity
impl UnwindSafe for SystemRelationSecurity
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,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more