Skip to main content

reifydb_sdk/operator/
column.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4use reifydb_type::value::constraint::TypeConstraint;
5
6#[derive(Debug, Clone)]
7pub struct OperatorColumn {
8	pub name: &'static str,
9	pub type_constraint: TypeConstraint,
10	pub description: &'static str,
11}