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<SchemaRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SchemaRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SchemaRow
Source§impl Serialize for SchemaRow
impl Serialize for SchemaRow
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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