pub struct TenancyTomlConfig {
pub mode: TenancyModeConfig,
pub tenant_claim: String,
}Expand description
Tenancy configuration from [fraiseql.tenancy] in fraiseql.toml.
Fields§
§mode: TenancyModeConfigIsolation strategy: "none", "row", or "schema".
tenant_claim: StringJWT claim name that carries the tenant identifier.
Implementations§
Trait Implementations§
Source§impl Clone for TenancyTomlConfig
impl Clone for TenancyTomlConfig
Source§fn clone(&self) -> TenancyTomlConfig
fn clone(&self) -> TenancyTomlConfig
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 TenancyTomlConfig
impl Debug for TenancyTomlConfig
Source§impl Default for TenancyTomlConfig
impl Default for TenancyTomlConfig
Source§impl<'de> Deserialize<'de> for TenancyTomlConfigwhere
TenancyTomlConfig: Default,
impl<'de> Deserialize<'de> for TenancyTomlConfigwhere
TenancyTomlConfig: Default,
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
Auto Trait Implementations§
impl Freeze for TenancyTomlConfig
impl RefUnwindSafe for TenancyTomlConfig
impl Send for TenancyTomlConfig
impl Sync for TenancyTomlConfig
impl Unpin for TenancyTomlConfig
impl UnsafeUnpin for TenancyTomlConfig
impl UnwindSafe for TenancyTomlConfig
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