pub struct SchemaRow {
pub name: String,
pub role_owner: String,
pub acl: Option<Vec<SchemaAclEntry>>,
}Expand description
Durable schema ownership and ACL metadata.
Fields§
§name: String§role_owner: StringSQL role that owns the schema. Catalogs written before schema security belonged to the bootstrap role.
acl: Option<Vec<SchemaAclEntry>>Explicit ACL paths. None represents the owner-only default for an ordinary schema.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SchemaRow
impl<'de> Deserialize<'de> for SchemaRow
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 Eq for SchemaRow
impl StructuralPartialEq for SchemaRow
Auto Trait Implementations§
impl Freeze for SchemaRow
impl RefUnwindSafe for SchemaRow
impl Send for SchemaRow
impl Sync for SchemaRow
impl Unpin for SchemaRow
impl UnsafeUnpin for SchemaRow
impl UnwindSafe for SchemaRow
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