pub struct Tenant(/* private fields */);
Expand description
Tenant
is a named key-space within a database.
Tenant
can be converted from and into Bytes
.
Note: Tenant should not begin with \xFF
. We do not enforce
this check when creating a value of type Tenant
. If you create
a value of Tenant
that starts with \xFF
, you can expect
tentant operations to fail with an FdbError
code of 2134
(invalid_tenant_name
).
Trait Implementations§
impl StructuralPartialEq for Tenant
Auto Trait Implementations§
impl !Freeze for Tenant
impl RefUnwindSafe for Tenant
impl Send for Tenant
impl Sync for Tenant
impl Unpin for Tenant
impl UnwindSafe for Tenant
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