pub enum SearchPathFormat {
TenantOnly,
TenantFirst,
SharedFirst,
}Expand description
Format for the schema search path.
Variants§
TenantOnly
Only include the tenant schema.
TenantFirst
Tenant schema first, then shared.
Shared schema first, then tenant.
Trait Implementations§
Source§impl Clone for SearchPathFormat
impl Clone for SearchPathFormat
Source§fn clone(&self) -> SearchPathFormat
fn clone(&self) -> SearchPathFormat
Returns a duplicate of the value. Read more
1.0.0 · 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 SearchPathFormat
impl Debug for SearchPathFormat
Source§impl Default for SearchPathFormat
impl Default for SearchPathFormat
Source§fn default() -> SearchPathFormat
fn default() -> SearchPathFormat
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchPathFormat
impl PartialEq for SearchPathFormat
impl Copy for SearchPathFormat
impl Eq for SearchPathFormat
impl StructuralPartialEq for SearchPathFormat
Auto Trait Implementations§
impl Freeze for SearchPathFormat
impl RefUnwindSafe for SearchPathFormat
impl Send for SearchPathFormat
impl Sync for SearchPathFormat
impl Unpin for SearchPathFormat
impl UnwindSafe for SearchPathFormat
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