pub struct TenantColumn {
pub column: String,
}Expand description
Tenant-scope predicate slot. Phase 241 leaves this None on every plan;
Phase 242 fills it (column name only — the runtime tenant_id is injected by
the executor from the dispatch_write tenant_id parameter, never stored here).
Fields§
§column: StringTrait Implementations§
Source§impl Clone for TenantColumn
impl Clone for TenantColumn
Source§fn clone(&self) -> TenantColumn
fn clone(&self) -> TenantColumn
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 TenantColumn
impl Debug for TenantColumn
Source§impl<'de> Deserialize<'de> for TenantColumn
impl<'de> Deserialize<'de> for TenantColumn
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
impl Eq for TenantColumn
Source§impl JsonSchema for TenantColumn
impl JsonSchema for TenantColumn
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for TenantColumn
impl PartialEq for TenantColumn
Source§fn eq(&self, other: &TenantColumn) -> bool
fn eq(&self, other: &TenantColumn) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TenantColumn
impl Serialize for TenantColumn
impl StructuralPartialEq for TenantColumn
Auto Trait Implementations§
impl Freeze for TenantColumn
impl RefUnwindSafe for TenantColumn
impl Send for TenantColumn
impl Sync for TenantColumn
impl Unpin for TenantColumn
impl UnsafeUnpin for TenantColumn
impl UnwindSafe for TenantColumn
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