pub struct SchemaSecurity {
pub role_owner: String,
pub acl: Option<Vec<SchemaAclEntry>>,
}Fields§
§role_owner: String§acl: Option<Vec<SchemaAclEntry>>Implementations§
Trait Implementations§
Source§impl Clone for SchemaSecurity
impl Clone for SchemaSecurity
Source§fn clone(&self) -> SchemaSecurity
fn clone(&self) -> SchemaSecurity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SchemaSecurity
impl Debug for SchemaSecurity
impl Eq for SchemaSecurity
Source§impl PartialEq for SchemaSecurity
impl PartialEq for SchemaSecurity
impl StructuralPartialEq for SchemaSecurity
Auto Trait Implementations§
impl Freeze for SchemaSecurity
impl RefUnwindSafe for SchemaSecurity
impl Send for SchemaSecurity
impl Sync for SchemaSecurity
impl Unpin for SchemaSecurity
impl UnsafeUnpin for SchemaSecurity
impl UnwindSafe for SchemaSecurity
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