pub struct ColumnDescription {
pub name: String,
pub data_type: u8,
pub members: Option<Vec<u8>>,
}Fields§
§name: String§data_type: u8§members: Option<Vec<u8>>For Union columns (data_type == TAG_UNION), the concrete member type
tags. None for concrete types and TAG_UNKNOWN.
Trait Implementations§
Source§impl Clone for ColumnDescription
impl Clone for ColumnDescription
Source§fn clone(&self) -> ColumnDescription
fn clone(&self) -> ColumnDescription
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 ColumnDescription
impl Debug for ColumnDescription
Source§impl PartialEq for ColumnDescription
impl PartialEq for ColumnDescription
Source§fn eq(&self, other: &ColumnDescription) -> bool
fn eq(&self, other: &ColumnDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnDescription
Auto Trait Implementations§
impl Freeze for ColumnDescription
impl RefUnwindSafe for ColumnDescription
impl Send for ColumnDescription
impl Sync for ColumnDescription
impl Unpin for ColumnDescription
impl UnsafeUnpin for ColumnDescription
impl UnwindSafe for ColumnDescription
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,
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 more