Struct fdb::tenant::TenantManagement
source · pub struct TenantManagement;
Expand description
The FDB API includes function to manage the set of tenants in a cluster.
Implementations§
source§impl TenantManagement
impl TenantManagement
sourcepub async fn create_tenant_db(
db: &FdbDatabase,
tenant_name: impl Into<Tenant>
) -> FdbResult<()>
pub async fn create_tenant_db( db: &FdbDatabase, tenant_name: impl Into<Tenant> ) -> FdbResult<()>
Creates a new tenant in the cluster using a transaction
created on the specified FdbDatabase
.
sourcepub fn create_tenant_tr(
tr: &FdbTransaction,
tenant_name: impl Into<Tenant>
) -> FdbResult<()>
pub fn create_tenant_tr( tr: &FdbTransaction, tenant_name: impl Into<Tenant> ) -> FdbResult<()>
Creates a new tenant in the cluster.
sourcepub async fn delete_tenant_db(
db: &FdbDatabase,
tenant_name: impl Into<Tenant>
) -> FdbResult<()>
pub async fn delete_tenant_db( db: &FdbDatabase, tenant_name: impl Into<Tenant> ) -> FdbResult<()>
Deletes a tenant from the cluster using a transaction created
on the specified FdbDatabase
.
sourcepub fn delete_tenant_tr(
tr: &FdbTransaction,
tenant_name: impl Into<Tenant>
) -> FdbResult<()>
pub fn delete_tenant_tr( tr: &FdbTransaction, tenant_name: impl Into<Tenant> ) -> FdbResult<()>
Deletes a tenant from the cluster.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for TenantManagement
impl Send for TenantManagement
impl Sync for TenantManagement
impl Unpin for TenantManagement
impl UnwindSafe for TenantManagement
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