iceberg::expr

Type Alias BoundTerm

Source
pub type BoundTerm = BoundReference;
Expand description

Bound term after binding to a schema.

Aliased Type§

struct BoundTerm { /* private fields */ }

Implementations

Source§

impl BoundReference

Source

pub fn new( name: impl Into<String>, field: NestedFieldRef, accessor: Arc<StructAccessor>, ) -> Self

Creates a new bound reference.

Source

pub fn field(&self) -> &NestedField

Return the field of this reference.

Source

pub fn accessor(&self) -> &StructAccessor

Get this BoundReference’s Accessor

Trait Implementations

Source§

impl Clone for BoundReference

Source§

fn clone(&self) -> BoundReference

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BoundReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for BoundReference

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for BoundReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for BoundReference

Source§

fn eq(&self, other: &BoundReference) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for BoundReference

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for BoundReference

Source§

impl StructuralPartialEq for BoundReference