Struct arrow_format::ipc::DictionaryEncoding
source · [−]pub struct DictionaryEncoding {
pub id: i64,
pub index_type: Option<Box<Int>>,
pub is_ordered: bool,
pub dictionary_kind: DictionaryKind,
}
Fields
id: i64
index_type: Option<Box<Int>>
is_ordered: bool
dictionary_kind: DictionaryKind
Implementations
sourceimpl DictionaryEncoding
impl DictionaryEncoding
pub fn create(
builder: &mut Builder,
id: impl WriteAsDefault<i64, i64>,
index_type: impl WriteAsOptional<Offset<Int>>,
is_ordered: impl WriteAsDefault<bool, bool>,
dictionary_kind: impl WriteAsDefault<DictionaryKind, DictionaryKind>
) -> Offset<Self>
Trait Implementations
sourceimpl Clone for DictionaryEncoding
impl Clone for DictionaryEncoding
sourcefn clone(&self) -> DictionaryEncoding
fn clone(&self) -> DictionaryEncoding
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DictionaryEncoding
impl Debug for DictionaryEncoding
sourceimpl<'de> Deserialize<'de> for DictionaryEncoding
impl<'de> Deserialize<'de> for DictionaryEncoding
sourcefn 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
sourceimpl PartialEq<DictionaryEncoding> for DictionaryEncoding
impl PartialEq<DictionaryEncoding> for DictionaryEncoding
sourcefn eq(&self, other: &DictionaryEncoding) -> bool
fn eq(&self, other: &DictionaryEncoding) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DictionaryEncoding) -> bool
fn ne(&self, other: &DictionaryEncoding) -> bool
This method tests for !=
.
sourceimpl Serialize for DictionaryEncoding
impl Serialize for DictionaryEncoding
sourceimpl<'a> TryFrom<DictionaryEncodingRef<'a>> for DictionaryEncoding
impl<'a> TryFrom<DictionaryEncodingRef<'a>> for DictionaryEncoding
impl StructuralPartialEq for DictionaryEncoding
impl VectorWrite<Offset<DictionaryEncoding>> for DictionaryEncoding
impl WriteAs<Offset<DictionaryEncoding>> for DictionaryEncoding
impl WriteAsOffset<DictionaryEncoding> for DictionaryEncoding
impl WriteAsOptional<Offset<DictionaryEncoding>> for DictionaryEncoding
Auto Trait Implementations
impl RefUnwindSafe for DictionaryEncoding
impl Send for DictionaryEncoding
impl Sync for DictionaryEncoding
impl Unpin for DictionaryEncoding
impl UnwindSafe for DictionaryEncoding
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more