pub enum StructRef<'a> {
Indexed {
arr: &'a StructArray,
idx: usize,
},
ValueRef {
val: &'a StructValue,
},
}
Variants§
Implementations§
Source§impl<'a> StructRef<'a>
impl<'a> StructRef<'a>
Sourcepub fn iter_fields_ref(self) -> impl ExactSizeIterator<Item = DatumRef<'a>> + 'a
pub fn iter_fields_ref(self) -> impl ExactSizeIterator<Item = DatumRef<'a>> + 'a
Iterates over the fields of the struct.
Prefer using the macro iter_fields_ref!
if possible to avoid the cost of enum dispatching.
Sourcepub fn field_at(&self, i: usize) -> DatumRef<'a>
pub fn field_at(&self, i: usize) -> DatumRef<'a>
Get the field at the given index.
Panics if the index is out of bounds.
Sourcepub unsafe fn field_at_unchecked(&self, i: usize) -> DatumRef<'a>
pub unsafe fn field_at_unchecked(&self, i: usize) -> DatumRef<'a>
pub fn memcmp_serialize( self, serializer: &mut Serializer<impl BufMut>, ) -> Result<()>
pub fn hash_scalar_inner<H: Hasher>(self, state: &mut H)
pub fn estimate_serialize_size_inner(self) -> usize
Trait Implementations§
Source§impl<'scalar> From<StructRef<'scalar>> for ScalarRefImpl<'scalar>
impl<'scalar> From<StructRef<'scalar>> for ScalarRefImpl<'scalar>
Source§impl Ord for StructRef<'_>
impl Ord for StructRef<'_>
Source§impl PartialOrd for StructRef<'_>
impl PartialOrd for StructRef<'_>
Source§impl Row for StructRef<'_>
A struct value can be treated as a row.
impl Row for StructRef<'_>
A struct value can be treated as a row.
Source§unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>
unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>
Source§fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>
fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>
Returns an iterator over the datums in the row, in
DatumRef
form.Source§fn into_owned_row(self) -> OwnedRow
fn into_owned_row(self) -> OwnedRow
Consumes
self
and converts it into an OwnedRow
.Source§fn value_serialize_into(&self, buf: impl BufMut)
fn value_serialize_into(&self, buf: impl BufMut)
Serializes the row with value encoding, into the given
buf
.Source§fn value_serialize(&self) -> Vec<u8> ⓘ
fn value_serialize(&self) -> Vec<u8> ⓘ
Serializes the row with value encoding and returns the bytes.
Source§fn value_serialize_bytes(&self) -> Bytes
fn value_serialize_bytes(&self) -> Bytes
Serializes the row with value encoding and returns the bytes.
fn value_estimate_size(&self) -> usize
Source§fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)
fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)
Serializes the row with memcomparable encoding, into the given
buf
. As each datum may have
different order type, a serde
should be provided.Source§fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8> ⓘ
fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8> ⓘ
Serializes the row with memcomparable encoding and return the bytes. As each datum may have
different order type, a
serde
should be provided.Source§fn hash_datums_into<H: Hasher>(&self, state: &mut H)
fn hash_datums_into<H: Hasher>(&self, state: &mut H)
Hash the datums of this row into the given hasher. Read more
Source§fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>
fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>
Returns the hash code of the row.
Source§impl<'a> ScalarRef<'a> for StructRef<'a>
Implement Scalar
for StructValue
.
impl<'a> ScalarRef<'a> for StructRef<'a>
Implement Scalar
for StructValue
.
Source§type ScalarType = StructValue
type ScalarType = StructValue
ScalarType
is the owned type of current ScalarRef
.Source§fn to_owned_scalar(&self) -> StructValue
fn to_owned_scalar(&self) -> StructValue
Convert
ScalarRef
to an owned scalar.Source§fn hash_scalar<H: Hasher>(&self, state: &mut H)
fn hash_scalar<H: Hasher>(&self, state: &mut H)
A wrapped hash function to get the hash value for this scaler.
Source§impl SelfAsScalarRef for StructRef<'_>
impl SelfAsScalarRef for StructRef<'_>
fn as_scalar_ref(&self) -> Self
Source§impl ToBinary for StructRef<'_>
impl ToBinary for StructRef<'_>
fn to_binary_with_type(&self, ty: &DataType) -> Result<Bytes, ToBinaryError>
Source§impl ToText for StructRef<'_>
impl ToText for StructRef<'_>
Source§fn write<W: Write>(&self, f: &mut W) -> Result
fn write<W: Write>(&self, f: &mut W) -> Result
Write the text to the writer regardless of its data type Read more
Source§fn write_with_type<W: Write>(&self, ty: &DataType, f: &mut W) -> Result
fn write_with_type<W: Write>(&self, ty: &DataType, f: &mut W) -> Result
Write the text to the writer according to its data type
Source§fn to_text_with_type(&self, ty: &DataType) -> String
fn to_text_with_type(&self, ty: &DataType) -> String
Convert to text according to its data type
Source§impl<'scalar> TryFrom<ScalarRefImpl<'scalar>> for StructRef<'scalar>
impl<'scalar> TryFrom<ScalarRefImpl<'scalar>> for StructRef<'scalar>
Source§type Error = ArrayError
type Error = ArrayError
The type returned in the event of a conversion error.
Source§fn try_from(val: ScalarRefImpl<'scalar>) -> ArrayResult<Self>
fn try_from(val: ScalarRefImpl<'scalar>) -> ArrayResult<Self>
Performs the conversion.
impl<'a> Copy for StructRef<'a>
impl Eq for StructRef<'_>
Auto Trait Implementations§
impl<'a> Freeze for StructRef<'a>
impl<'a> RefUnwindSafe for StructRef<'a>
impl<'a> Send for StructRef<'a>
impl<'a> Sync for StructRef<'a>
impl<'a> Unpin for StructRef<'a>
impl<'a> UnwindSafe for StructRef<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<R> DefaultOrd for Rwhere
R: Row,
impl<R> DefaultOrd for Rwhere
R: Row,
fn default_cmp(&self, other: &R) -> Ordering
Source§impl<R> DefaultPartialOrd for Rwhere
R: Row,
impl<R> DefaultPartialOrd for Rwhere
R: Row,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
Source§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level
.Source§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
.Source§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
with metric_level
set to
MetricLevel::Debug
and relabel_num
set to 1.Source§impl<R> RowExt for Rwhere
R: Row,
impl<R> RowExt for Rwhere
R: Row,
Source§fn chain<R: Row>(self, other: R) -> Chain<Self, R>where
Self: Sized,
fn chain<R: Row>(self, other: R) -> Chain<Self, R>where
Self: Sized,
Adapter for chaining two rows together.
Source§fn project(self, indices: &[usize]) -> Project<'_, Self>where
Self: Sized,
fn project(self, indices: &[usize]) -> Project<'_, Self>where
Self: Sized,
Adapter for projecting a row onto a subset of its columns with the given
indices
. Read moreSource§fn slice(self, range: impl RangeBounds<usize>) -> Slice<Self>where
Self: Sized,
fn slice(self, range: impl RangeBounds<usize>) -> Slice<Self>where
Self: Sized,
Adapter for slicing a row with the given
range
. Read morefn display(&self) -> impl Display + '_
fn is_null_at(&self, index: usize) -> bool
Source§impl<T> SameOrElseExt for Twhere
T: Eq,
impl<T> SameOrElseExt for Twhere
T: Eq,
Source§fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
Check if
self
and other
are equal, if so, return self
, otherwise return the result of f()
.